Morgan McMillian
539e6be0af
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
16 lines
418 B
Groovy
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" }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|