This commit is contained in:
eugene 2023-06-07 00:39:02 +02:00
parent 3fef5dda76
commit 14b6b95631

View File

@ -42,14 +42,12 @@ pipeline {
//sh "python3 script5_3.py | tee output.txt | tar -czf output.tar.gz output.txt"
sh "python3 script7.py | tee metrics.txt"
}
}
stage('Archive Output') {
steps {
archiveArtifacts 'experiments/**/*.*'
}
}
stages {
stage('Archive Output') {
steps {
archiveArtifacts 'experiments/**/*.*'
}
}
}
}
}