try parallel snap build
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
This commit is contained in:
parent
1cb056f3ea
commit
539e6be0af
1 changed files with 10 additions and 4 deletions
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
|
@ -1,9 +1,15 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'snaps' }
|
|
||||||
stages {
|
stages {
|
||||||
stage('snap') {
|
stage('Build snap packages') {
|
||||||
steps {
|
parallel {
|
||||||
sh 'snapcraft'
|
stage('Snap ARM64') {
|
||||||
|
agent { label "snap-arm64" }
|
||||||
|
steps { sh "snapcraft" }
|
||||||
|
}
|
||||||
|
stage('Snap AMD64') {
|
||||||
|
agent { label "snap-amd64" }
|
||||||
|
steps { sh "snapcraft" }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue