test jenkins

This commit is contained in:
Fedor Katurov 2020-03-20 20:13:11 +07:00
parent cf2391e791
commit 74f7d2171b

7
Jenkinsfile vendored
View file

@ -9,13 +9,8 @@ pipeline {
stage('Show the branch 1') { stage('Show the branch 1') {
steps { steps {
sh '/bin/true' sh '/bin/true'
echo "BRANCH IS: ${params.BRANCH}" echo "BRANCH IS: ${env.BRANCH}"
} }
} }
} }
node('master') {
build job: 'build', parameters: [string(name: 'Branch', value: "${env.BRANCH_NAME}")], propagate: true, wait: true
build job: 'release', parameters: [string(name: 'Branch', value: "${env.BRANCH_NAME}")], propagate: true, wait: true
}
} }