14 lines
213 B
Plaintext
14 lines
213 B
Plaintext
|
pipeline {
|
||
|
agent {
|
||
|
dockerfile {
|
||
|
filename 'Dockerfile_3'
|
||
|
}
|
||
|
}
|
||
|
stages {
|
||
|
stage('Archive Output') {
|
||
|
steps {
|
||
|
archiveArtifacts 'my_runs'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|