We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191e3e8 commit ca29f6fCopy full SHA for ca29f6f
Jenkinsfile
@@ -91,11 +91,11 @@ def genStaticStep(LinkedHashMap pkg, String arch) {
91
checkout scm
92
sh "make REF=$branch TARGETPLATFORM=${pkg.os}/${config.targetarch} static"
93
}
94
- post {
95
- always {
96
- archiveArtifacts artifacts: 'static/build/bundles-*.tar.gz', onlyIfSuccessful: true, fingerprint: true
97
- sh "make clean"
98
- }
+ stage("upload artifacts") {
+ archiveArtifacts artifacts: 'static/build/bundles-*.tar.gz', onlyIfSuccessful: true, fingerprint: true
+ }
+ stage("clean") {
+ sh "make clean"
99
100
101
0 commit comments