mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
16 lines
No EOL
341 B
Groovy
16 lines
No EOL
341 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
parameters {
|
|
gitParameter branchFilter: '.*/(.*)', defaultValue: 'master', name: 'BRANCH', type: 'PT_BRANCH'
|
|
}
|
|
|
|
stages {
|
|
stage('Show the branch 1') {
|
|
steps {
|
|
sh '/bin/true'
|
|
echo "BRANCH IS: ${params.BRANCH}"
|
|
}
|
|
}
|
|
}
|
|
} |