testing jenkins

This commit is contained in:
Fedor Katurov 2020-03-20 19:52:09 +07:00
parent 7fa24d2fe6
commit b9a499d0f0

7
Jenkinsfile vendored
View file

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