orchidmap-front/Jenkinsfile
2020-03-20 20:16:58 +07:00

23 lines
No EOL
599 B
Groovy

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