partybot/Jenkinsfile
Morgan McMillian 539e6be0af
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
try parallel snap build
2022-11-12 21:46:30 -08:00

16 lines
418 B
Groovy

pipeline {
stages {
stage('Build snap packages') {
parallel {
stage('Snap ARM64') {
agent { label "snap-arm64" }
steps { sh "snapcraft" }
}
stage('Snap AMD64') {
agent { label "snap-amd64" }
steps { sh "snapcraft" }
}
}
}
}
}