jenkins: more expanded testing

This commit is contained in:
2026-02-24 05:02:10 -06:00
parent ba526fe2c4
commit 412bc58323
Vendored
+1 -2
View File
@@ -45,11 +45,10 @@ pipeline {
stage('Test Checkout') { stage('Test Checkout') {
when { when {
beforeAgent true beforeAgent true
expression { return ('origin/zzz' == 'origin/zzz') } expression { return (env.GIT_BRANCH == 'origin/zzz') }
} }
agent { label 'agent-13' } agent { label 'agent-13' }
steps { steps {
sh 'echo $GIT_BRANCH'
checkout scm checkout scm
} }
} }