14 lines
217 B
Plaintext
14 lines
217 B
Plaintext
|
pipeline {
|
||
|
agent {
|
||
|
dockerfile {
|
||
|
filename "Dockerfile_4"
|
||
|
}
|
||
|
}
|
||
|
stages {
|
||
|
stage('Archive Output') {
|
||
|
steps {
|
||
|
archiveArtifacts 'metrics.txt'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|