Skip to content

Commit ca29f6f

Browse files
committed
WIP attempt 2
Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 191e3e8 commit ca29f6f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ def genStaticStep(LinkedHashMap pkg, String arch) {
9191
checkout scm
9292
sh "make REF=$branch TARGETPLATFORM=${pkg.os}/${config.targetarch} static"
9393
}
94-
post {
95-
always {
96-
archiveArtifacts artifacts: 'static/build/bundles-*.tar.gz', onlyIfSuccessful: true, fingerprint: true
97-
sh "make clean"
98-
}
94+
stage("upload artifacts") {
95+
archiveArtifacts artifacts: 'static/build/bundles-*.tar.gz', onlyIfSuccessful: true, fingerprint: true
96+
}
97+
stage("clean") {
98+
sh "make clean"
9999
}
100100
}
101101
}

0 commit comments

Comments
 (0)