Skip to content
Snippets Groups Projects
Commit 0c79268e authored by Lars Bilke's avatar Lars Bilke
Browse files

[Jenkins] Just archive, no S3 upload.

parent 9ad21b96
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ node('visserv3') ...@@ -26,7 +26,7 @@ node('visserv3')
if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.contains('release') ) { if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.contains('release') ) {
stage 'Release (Win)' stage 'Release (Win)'
deploy 'build/*.zip archive 'build/*.zip
} }
stage 'Post (Win)' stage 'Post (Win)'
......
...@@ -9,12 +9,12 @@ node('win1') ...@@ -9,12 +9,12 @@ node('win1')
if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.contains('release') ) { if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.contains('release') ) {
step([$class: 'GitHubSetCommitStatusBuilder', statusMessage: [content: 'Started Jenkins MSVC32 build']]) step([$class: 'GitHubSetCommitStatusBuilder', statusMessage: [content: 'Started Jenkins MSVC32 build']])
stage 'Release (Win)' stage 'Data Explorer (Win)'
withEnv(env32) { withEnv(env32) {
configure 'build-32', '-DOGS_BUILD_GUI=ON -DOGS_BUILD_UTILS=ON -DOGS_BUILD_TESTS=OFF', 'Visual Studio 12', '-u -s build_type=Release -s compiler="Visual Studio" -s compiler.version=12 -s arch=x86' configure 'build-32', '-DOGS_BUILD_GUI=ON -DOGS_BUILD_UTILS=ON -DOGS_BUILD_TESTS=OFF', 'Visual Studio 12', '-u -s build_type=Release -s compiler="Visual Studio" -s compiler.version=12 -s arch=x86'
build 'build-32', 'package' build 'build-32', 'package'
} }
deploy 'build-32/*.zip' archive 'build-32/*.zip'
} }
} }
......
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