From a0bf935f9c40993f62f20623298dc5117aaba38d Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 2 Aug 2019 18:41:50 +0200 Subject: [PATCH] Jenkinsfile: run "make clean" in cleanup step Signed-off-by: Sebastiaan van Stijn --- Jenkinsfile | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 333a0f272f..7179b9c63a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,7 +76,11 @@ pipeline { echo 'Creating unit-bundles.tar.gz' tar -czvf unit-bundles.tar.gz bundles/junit-report.xml bundles/go-test-report.json bundles/profile.out ''' + archiveArtifacts artifacts: 'unit-bundles.tar.gz' + } + cleanup { + sh 'make clean' deleteDir() } } @@ -142,7 +146,11 @@ pipeline { echo "Creating janky-bundles.tar.gz" (find bundles -name '*.log' -o -name '*.prof' -o -name integration.test | xargs tar -czf janky-bundles.tar.gz) || true ''' + archiveArtifacts artifacts: 'janky-bundles.tar.gz' + } + cleanup { + sh 'make clean' deleteDir() } } @@ -195,8 +203,10 @@ pipeline { (find bundles -name '*.log' -o -name '*.prof' -o -name integration.test | xargs tar -czf experimental-bundles.tar.gz) || true ''' - sh 'make clean' archiveArtifacts artifacts: 'experimental-bundles.tar.gz' + } + cleanup { + sh 'make clean' deleteDir() } } @@ -248,7 +258,11 @@ pipeline { echo "Creating bundles.tar.gz" find bundles -name '*.log' | xargs tar -czf s390x-bundles.tar.gz ''' + archiveArtifacts artifacts: 's390x-bundles.tar.gz' + } + cleanup { + sh 'make clean' deleteDir() } } @@ -300,7 +314,11 @@ pipeline { echo "Creating bundles.tar.gz" find bundles -name '*.log' | xargs tar -czf powerpc-bundles.tar.gz ''' + archiveArtifacts artifacts: 'powerpc-bundles.tar.gz' + } + cleanup { + sh 'make clean' deleteDir() } } @@ -336,7 +354,12 @@ pipeline { } } } - } + post { + cleanup { + sh 'make clean' + deleteDir() + } + } } stage('windowsRS1') { when { beforeAgent true