orchidmap-front/Jenkinsfile
2020-03-20 20:01:47 +07:00

16 lines
No EOL
334 B
Groovy

pipeline {
agent any
parameters {
gitParameter branchFilter: 'origin/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
}
stages {
stage('Show the branch 1') {
steps {
sh '/bin/true'
echo "${params.BRANCH}"
}
}
}
}