From 7ad3dff3c069da3f1bd1712677338999374961b6 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 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ci/Jenkinsfile diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile new file mode 100644 index 0000000..36a0cbf --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,8 @@ +@Library('containerimages')_ + +buildContainerImage2(project: 'infra', defaultBranch: 'master', archlist: ['arm64']) +stage('Deploy') { + when(env.BRANCH_NAME == "master") { + kubeRestartDeployment() + } +}