Skip to content
Snippets Groups Projects
Commit 2ee881af authored by Lars Bilke's avatar Lars Bilke Committed by Lars Bilke
Browse files

[Jenkins] Always archive build artifacts.

This enables downloading of binaries on each Pull Request.
parent f4e548e1
No related branches found
No related tags found
No related merge requests found
...@@ -33,10 +33,8 @@ image.inside(defaultDockerArgs) { ...@@ -33,10 +33,8 @@ image.inside(defaultDockerArgs) {
} }
} }
if (helper.isRelease(this)) { stage('Archive (Linux-Docker)') {
stage('Release (Linux-Docker)') { archiveArtifacts 'build/*.tar.gz'
archiveArtifacts 'build/*.tar.gz'
}
} }
stage('Post (Linux-Docker)') { stage('Post (Linux-Docker)') {
......
...@@ -31,10 +31,8 @@ stage('Data Explorer (Mac)') { ...@@ -31,10 +31,8 @@ stage('Data Explorer (Mac)') {
build.linux this, 'build', null, 'ninja' build.linux this, 'build', null, 'ninja'
} }
if (helper.isRelease(this)) { stage('Archive (Mac)') {
stage('Release (Mac)') { archiveArtifacts 'build/*.tar.gz,build/*.dmg'
archiveArtifacts 'build/*.tar.gz,build/*.dmg'
}
} }
stage('Post (Mac)') { stage('Post (Mac)') {
......
...@@ -41,10 +41,8 @@ withEnv(helper.getEnv(this)) { ...@@ -41,10 +41,8 @@ withEnv(helper.getEnv(this)) {
} }
} }
if (helper.isRelease(this)) { stage('Archive (Win)') {
stage('Release (Win)') { archiveArtifacts 'build/*.zip'
archiveArtifacts 'build/*.zip'
}
} }
stage('Post (Win)') { stage('Post (Win)') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment