mirror of https://github.com/apache/activemq.git
parent
8ba765bbaf
commit
c58286487d
|
@ -22,8 +22,8 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
|
|
||||||
agent {
|
agent {
|
||||||
node {
|
label {
|
||||||
label 'ubuntu'
|
label params.nodeLabel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,9 +41,14 @@ pipeline {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
choice(name: 'nodeLabel', choices: ['ubuntu', 's390x'])
|
||||||
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Initialization') {
|
stage('Initialization') {
|
||||||
steps {
|
steps {
|
||||||
|
echo "running on ${env.NODE_NAME}"
|
||||||
echo 'Building branch ' + env.BRANCH_NAME
|
echo 'Building branch ' + env.BRANCH_NAME
|
||||||
echo 'Using PATH ' + env.PATH
|
echo 'Using PATH ' + env.PATH
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue