orchidmap-front/Jenkinsfile
2020-03-20 20:15:55 +07:00

21 lines
No EOL
549 B
Groovy

pipeline {
agent any
parameters {
gitParameter branchFilter: '.*/(.*)', defaultValue: 'hoogabooga', name: 'BRANCH', type: 'PT_BRANCH'
}
stages {
stage('Show the branch 1') {
GIT_BRANCH_LOCAL = sh (
script: "echo $Branch | sed -e 's|origin/||g'",
returnStdout: true
).trim()
echo "Git branch: ${GIT_BRANCH_LOCAL}"
steps {
sh '/bin/true'
echo "BRANCH IS: ${env.BRANCH}"
}
}
}
}