From 0c79268e661f8b78fddc4b5d17cb690e5398502c Mon Sep 17 00:00:00 2001
From: Lars Bilke <lars.bilke@ufz.de>
Date: Wed, 7 Sep 2016 11:30:34 +0200
Subject: [PATCH] [Jenkins] Just archive, no S3 upload.

---
 scripts/jenkins/msvc.groovy   | 2 +-
 scripts/jenkins/msvc32.groovy | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/jenkins/msvc.groovy b/scripts/jenkins/msvc.groovy
index 2a67ba05ed2..9234b147db4 100644
--- a/scripts/jenkins/msvc.groovy
+++ b/scripts/jenkins/msvc.groovy
@@ -26,7 +26,7 @@ node('visserv3')
 
     if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.contains('release') ) {
         stage 'Release (Win)'
-        deploy 'build/*.zip
+        archive 'build/*.zip
     }
 
     stage 'Post (Win)'
diff --git a/scripts/jenkins/msvc32.groovy b/scripts/jenkins/msvc32.groovy
index 6252d2c0f66..78587f59776 100644
--- a/scripts/jenkins/msvc32.groovy
+++ b/scripts/jenkins/msvc32.groovy
@@ -9,12 +9,12 @@ node('win1')
     if (env.BRANCH_NAME == 'master' || env.BRANCH_NAME.contains('release') ) {
         step([$class: 'GitHubSetCommitStatusBuilder', statusMessage: [content: 'Started Jenkins MSVC32 build']])
 
-        stage 'Release (Win)'
+        stage 'Data Explorer (Win)'
         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'
             build 'build-32', 'package'
         }
-        deploy 'build-32/*.zip'
+        archive 'build-32/*.zip'
     }
 }
 
-- 
GitLab