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) {
}
}
if (helper.isRelease(this)) {
stage('Release (Linux-Docker)') {
archiveArtifacts 'build/*.tar.gz'
}
stage('Archive (Linux-Docker)') {
archiveArtifacts 'build/*.tar.gz'
}
stage('Post (Linux-Docker)') {
......
......@@ -31,10 +31,8 @@ stage('Data Explorer (Mac)') {
build.linux this, 'build', null, 'ninja'
}
if (helper.isRelease(this)) {
stage('Release (Mac)') {
archiveArtifacts 'build/*.tar.gz,build/*.dmg'
}
stage('Archive (Mac)') {
archiveArtifacts 'build/*.tar.gz,build/*.dmg'
}
stage('Post (Mac)') {
......
......@@ -41,10 +41,8 @@ withEnv(helper.getEnv(this)) {
}
}
if (helper.isRelease(this)) {
stage('Release (Win)') {
archiveArtifacts 'build/*.zip'
}
stage('Archive (Win)') {
archiveArtifacts 'build/*.zip'
}
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