diff --git a/Jenkinsfile-lab7 b/Jenkinsfile-lab7 index 61589b2..8607435 100644 --- a/Jenkinsfile-lab7 +++ b/Jenkinsfile-lab7 @@ -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/**/*.*' - } - } - } } }