From 14b6b95631d0d752433a5be29097ae9023a80544 Mon Sep 17 00:00:00 2001 From: eugene Date: Wed, 7 Jun 2023 00:39:02 +0200 Subject: [PATCH] upd j --- Jenkinsfile-lab7 | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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/**/*.*' - } - } - } } }