orchidmap-front/Jenkinsfile
2020-03-20 19:52:09 +07:00

16 lines
No EOL
332 B
Groovy

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