Skip to content
Snippets Groups Projects
Unverified Commit 96a1f14a authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer Committed by GitHub
Browse files

Remove verbose flag when untaring artefacts for analysis jobs

The verbose output makes up the majority of the build log.
parent fcda81cc
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ def doBuilddirArtefact(String label, String buildType) { ...@@ -192,7 +192,7 @@ def doBuilddirArtefact(String label, String buildType) {
// Then obtain artefacts of dependencies (from /scratch/artefact.list) // Then obtain artefacts of dependencies (from /scratch/artefact.list)
sh """ sh """
for a in artefacts/build-*-${label}-${buildType}.tgz ; do for a in artefacts/build-*-${label}-${buildType}.tgz ; do
sudo -H -E -u msk_jenkins tar zxvf \"\${a}\" -C / sudo -H -E -u msk_jenkins tar zxf \"\${a}\" -C /
done done
touch /scratch/artefact.list touch /scratch/artefact.list
...@@ -210,7 +210,7 @@ def doBuilddirArtefact(String label, String buildType) { ...@@ -210,7 +210,7 @@ def doBuilddirArtefact(String label, String buildType) {
sh """ sh """
if ls artefacts/install-*-${label}-${buildType}.tgz 1>/dev/null 2>&1; then if ls artefacts/install-*-${label}-${buildType}.tgz 1>/dev/null 2>&1; then
for a in artefacts/install-*-${label}-${buildType}.tgz ; do for a in artefacts/install-*-${label}-${buildType}.tgz ; do
tar zxvf \"\${a}\" -C / tar zxf \"\${a}\" -C /
done done
fi fi
""" """
......
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