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

View File

@ -43,13 +43,11 @@ pipeline {
sh "python3 script7.py | tee metrics.txt" sh "python3 script7.py | tee metrics.txt"
} }
} }
stages { stage('Archive Output') {
stage('Archive Output') { steps {
steps { archiveArtifacts 'experiments/**/*.*'
archiveArtifacts 'experiments/**/*.*' }
} }
}
}
} }
} }