ium_452627/Jenkinsfile_6

14 lines
217 B
Plaintext
Raw Normal View History

2023-05-13 17:33:01 +02:00
pipeline {
agent {
dockerfile {
filename "Dockerfile_4"
}
}
stages {
stage('Archive Output') {
steps {
archiveArtifacts 'metrics.txt'
}
}
}
}