ium_452627/Jenkinsfile_6

14 lines
217 B
Plaintext

pipeline {
agent {
dockerfile {
filename "Dockerfile_4"
}
}
stages {
stage('Archive Output') {
steps {
archiveArtifacts 'metrics.txt'
}
}
}
}