Jenkinsfile: run "make clean" in cleanup step

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit a0bf935f9c)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-08-02 18:41:50 +02:00
parent 3040f3fdbb
commit 37536cdfa4
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

27
Jenkinsfile vendored
View file

@ -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