From c9424ade8dc56ae4f74fb2bf385a92ea97dffa00 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 12 Mar 2025 06:43:17 -0500 Subject: [PATCH] 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..f270f14 --- /dev/null +++ b/ci/Jenkinsfile @@ -0,0 +1,10 @@ +@Library('containerimages') +@Library('dch') +_ + +buildContainerImage2(project: 'packages') +stage('Deploy') { + when(env.BRANCH_NAME == "dev/ci") { + kubeRestartDeployment() + } +}