14 lines
220 B
Plaintext
14 lines
220 B
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile {
|
|
filename "Dockerfile_3"
|
|
}
|
|
}
|
|
stages {
|
|
stage('Archive Output') {
|
|
steps {
|
|
archiveArtifacts 'my_runs/**/*.*'
|
|
}
|
|
}
|
|
}
|
|
} |