Skip to content

Commit

Permalink
Jenkinsfile: run "make clean" in cleanup step
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
  • Loading branch information
thaJeztah committed Aug 2, 2019
1 parent 79713d8 commit a0bf935
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down Expand Up @@ -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()
}
}
Expand Down Expand Up @@ -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()
}
}
Expand Down Expand Up @@ -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()
}
}
Expand Down Expand Up @@ -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()
}
}
Expand Down Expand Up @@ -336,7 +354,12 @@ pipeline {
}
}
}
}
post {
cleanup {
sh 'make clean'
deleteDir()
}
} }
stage('windowsRS1') {
when {
beforeAgent true
Expand Down

0 comments on commit a0bf935

Please sign in to comment.