don't fail if no previous snaps exist
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
2d09b250e3
commit
defe81cef3
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -9,7 +9,7 @@ pipeline {
|
|||
stage('Build snap for ARM64') {
|
||||
agent { label "snap-arm64" }
|
||||
steps {
|
||||
sh "rm *.snap"
|
||||
sh "rm *.snap || true"
|
||||
sh "snapcraft"
|
||||
}
|
||||
post {
|
||||
|
@ -21,7 +21,7 @@ pipeline {
|
|||
stage('Build snap for AMD64') {
|
||||
agent { label "snap-amd64" }
|
||||
steps {
|
||||
sh "rm *.snap"
|
||||
sh "rm *.snap || true"
|
||||
sh "snapcraft"
|
||||
}
|
||||
post {
|
||||
|
|
Loading…
Reference in a new issue