ium_452627/Jenkinsfile_5

14 lines
220 B
Plaintext
Raw Permalink Normal View History

2023-05-11 21:13:19 +02:00
pipeline {
agent {
dockerfile {
2023-05-11 21:35:57 +02:00
filename "Dockerfile_3"
2023-05-11 21:13:19 +02:00
}
}
stages {
stage('Archive Output') {
steps {
2023-05-11 21:17:26 +02:00
archiveArtifacts 'my_runs/**/*.*'
2023-05-11 21:13:19 +02:00
}
}
}
}