From b9daf15d7faffe758f575c8e90a1e121a5e61c13 Mon Sep 17 00:00:00 2001
From: mancini <mancini@astron.nl>
Date: Fri, 28 Jun 2019 18:20:51 +0200
Subject: [PATCH] OSB-45: making bob global agent

---
 LCU/Maintenance/Docker/Jenkinsfile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/LCU/Maintenance/Docker/Jenkinsfile b/LCU/Maintenance/Docker/Jenkinsfile
index 4804f2f6720..3bcd4b13f16 100644
--- a/LCU/Maintenance/Docker/Jenkinsfile
+++ b/LCU/Maintenance/Docker/Jenkinsfile
@@ -1,15 +1,14 @@
 pipeline {
-    agent none
-
+    agent {
+        label 'bob'
+    }
     environment {
             DOCKER_TAG = "${env.BUILD_TAG}"
     }
 
     stages {
         stage('Build') {
-            agent {
-                label 'bob'
-            }
+
             steps {
             
                 echo 'building tag ${env.DOCKER_TAG}'
@@ -40,6 +39,7 @@ pipeline {
             }
         }
         stage('Push to nexus') {
+
             steps {
 
                 script {
-- 
GitLab