orchidmap-front/Jenkinsfile
2020-03-20 20:04:53 +07:00

16 lines
No EOL
341 B
Groovy

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