test jenkins

This commit is contained in:
Fedor Katurov 2020-03-20 20:04:53 +07:00
parent d1d324a792
commit ae3f6d13da

4
Jenkinsfile vendored
View file

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