From 6e03871355d5f4542789a77675c965eb3524976f Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 8 Aug 2025 11:16:20 -0500 Subject: [PATCH] wip: ci: Add Jenkins build pipeline --- ci/Jenkinsfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ci/Jenkinsfile diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile new file mode 100644 index 0000000..27f029d --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,10 @@ +@Library('containerimages') +@Library('dch') +_ + +buildContainerImage2(project: 'infra', defaultBranch: 'master', archlist: ['arm64']) +stage('Deploy') { + when(env.BRANCH_NAME == "master") { + kubeRestartDeployment() + } +}