CI: Prevent having to spin up resources when not Master branch
This commit is contained in:
parent
418899d425
commit
0acec1105b
12
Jenkinsfile
vendored
12
Jenkinsfile
vendored
@ -81,11 +81,11 @@ pipeline {
|
||||
}
|
||||
}
|
||||
stage('Build Master') {
|
||||
when {
|
||||
branch: 'master'
|
||||
}
|
||||
parallel {
|
||||
stage('x86_64') {
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
steps {
|
||||
ansiColor('xterm') {
|
||||
// Codebase
|
||||
@ -127,9 +127,6 @@ pipeline {
|
||||
}
|
||||
}
|
||||
stage('armhf') {
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
agent {
|
||||
label 'armhf'
|
||||
}
|
||||
@ -173,9 +170,6 @@ pipeline {
|
||||
}
|
||||
}
|
||||
stage('arm64') {
|
||||
when {
|
||||
branch 'master'
|
||||
}
|
||||
agent {
|
||||
label 'arm64'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user