archive-deliverable #24

Merged
bucky merged 12 commits from archive-deliverable into master 2023-10-16 17:28:44 -07:00
Showing only changes of commit b2cdf60a32 - Show all commits
Vendored
+4 -2
View File
@@ -55,14 +55,16 @@ pipeline {
rm -rf /tmp/url-shortener/features /tmp/url-shortener/spec /tmp/url-shortener/coverage .git* rm -rf /tmp/url-shortener/features /tmp/url-shortener/spec /tmp/url-shortener/coverage .git*
cd /tmp cd /tmp
tar -czvf url-shortener.tgz url-shortener/ tar -czvf url-shortener.tgz url-shortener/
mv url-shortener.tgz $CUR_DIR
''' '''
} }
archiveArtifacts artifacts: '/tmp/url-shortener.tgz' archiveArtifacts artifacts: 'url-shortener.tgz'
} }
} }
stage('Clean up deliverable') { stage('Clean up deliverable') {
steps { steps {
sh 'rm -rf /tmp/url-shortener*' sh 'rm -rf /tmp/url-shortener'
sh 'rm -rf url-shortener.tgz'
} }
} }
} }