partybot/Jenkinsfile
Morgan McMillian 2d09b250e3
Some checks failed
dreamfall/partybot/pipeline/head There was a failure building this commit
remove old snaps before building new
2022-11-13 07:30:04 -08:00

36 lines
1.1 KiB
Groovy

pipeline {
agent none
environment {
SNAPCRAFT_STORE_CREDENTIALS = credentials('snapcraft-store-credentials')
}
stages {
stage('Build snap packages') {
parallel {
stage('Build snap for ARM64') {
agent { label "snap-arm64" }
steps {
sh "rm *.snap"
sh "snapcraft"
}
post {
success {
sh "snapcraft upload --release=edge *.snap"
}
}
}
stage('Build snap for AMD64') {
agent { label "snap-amd64" }
steps {
sh "rm *.snap"
sh "snapcraft"
}
post {
success {
sh "snapcraft upload --release=edge *.snap"
}
}
}
}
}
}
}