From 7641fa3164f32e52175ade794882f0f569d61543 Mon Sep 17 00:00:00 2001
From: poldy79 <leonard@penzer.de>
Date: Fri, 11 May 2018 16:41:04 +0200
Subject: [PATCH] fix: do not stash and archive output/modules

As the current release does generate any artefacts to output/modules,
this folder will not be stashed or archived
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index fe2a5d9a1..c0134c4b1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -58,7 +58,7 @@ def buildArch(archs) {
         }
     }
     allArchs << "${STAGE_NAME}"
-    stash name: "${STAGE_NAME}", includes: "output/images/*/*, output/modules/*/*/*/*, output/packages/*/*/*/*"
+    stash name: "${STAGE_NAME}", includes: "output/images/*/*, output/packages/*/*/*/*"
 }
 
 pipeline {
@@ -201,7 +201,7 @@ pipeline {
                         make manifest GLUON_BRANCH=beta
                         make manifest GLUON_BRANCH=nightly
                     """
-                    archiveArtifacts artifacts: 'output/images/*/*, output/modules/*/*/*/*, output/packages/*/*/*/*', fingerprint: true
+                    archiveArtifacts artifacts: 'output/images/*/*, output/packages/*/*/*/*', fingerprint: true
             } }
         }
     }
-- 
GitLab