1
0
Files
dch-webhooks/ci/Jenkinsfile
Dustin C. Hatch 8749e2b7bc
Some checks failed
infra/dch-webhooks/pipeline/head There was a failure building this commit
ci: Add Jenkins build pipeline
2025-08-10 15:45:55 -05:00

10 lines
258 B
Groovy

@Library('containerimages')
@Library('dch')_
buildContainerImage2(project: 'infra', defaultBranch: 'master', archlist: ['amd64', 'arm64'])
stage('Deploy') {
when(env.BRANCH_NAME == "master") {
kubeRestartDeployment(namespace: 'default')
}
}