This commit is contained in:
eugene 2023-06-06 22:42:52 +02:00
parent c1271fb458
commit 1b2296cf4c

View File

@ -56,7 +56,12 @@ pipeline {
sh "chmod u+x script5_4.py"
//sh "pip3 show pandas"
//sh "python3 script5_3.py | tee output.txt | tar -czf output.tar.gz output.txt"
sh "python3 script5_4.py | tee output.txt"
sh "python3 script5_4.py | tee metrics.txt"
}
}
stage('Archive Output') {
steps {
archiveArtifacts 'metrics.txt'
}
}