Update 'lab6/Jenkinsfile'
s449288-training/pipeline/head There was a failure building this commit Details

This commit is contained in:
Kacper Dudzic 2022-04-24 17:28:49 +02:00
parent 76fe5ffee7
commit 4f176de119
1 changed files with 4 additions and 0 deletions

4
lab6/Jenkinsfile vendored
View File

@ -14,6 +14,10 @@ pipeline {
echo 'Model and predictions saved'
sh 'head lego_reg_results.csv'
sh 'ls -lh lego_reg_model'
echo 'Archiving model...'
sh 'tar -czf lego_reg_model'
archiveArtifacts 'lego_reg_model.tar.gz'
echo 'Model archived'
}
}
}