Skip to content
Snippets Groups Projects
Commit 7641fa31 authored by Leonard Penzer's avatar Leonard Penzer
Browse files

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
parent f6464b7e
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ def buildArch(archs) { ...@@ -58,7 +58,7 @@ def buildArch(archs) {
} }
} }
allArchs << "${STAGE_NAME}" allArchs << "${STAGE_NAME}"
stash name: "${STAGE_NAME}", includes: "output/images/*/*, output/modules/*/*/*/*, output/packages/*/*/*/*" stash name: "${STAGE_NAME}", includes: "output/images/*/*, output/packages/*/*/*/*"
} }
pipeline { pipeline {
...@@ -201,7 +201,7 @@ pipeline { ...@@ -201,7 +201,7 @@ pipeline {
make manifest GLUON_BRANCH=beta make manifest GLUON_BRANCH=beta
make manifest GLUON_BRANCH=nightly make manifest GLUON_BRANCH=nightly
""" """
archiveArtifacts artifacts: 'output/images/*/*, output/modules/*/*/*/*, output/packages/*/*/*/*', fingerprint: true archiveArtifacts artifacts: 'output/images/*/*, output/packages/*/*/*/*', fingerprint: true
} } } }
} }
} }
......
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