Morgan McMillian
130f4004d7
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
17 lines
433 B
Groovy
17 lines
433 B
Groovy
pipeline {
|
|
agent none
|
|
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" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|