ium_452627/Jenkinsfile_4

32 lines
812 B
Plaintext
Raw Normal View History

2023-05-11 19:05:12 +02:00
pipeline {
agent {
dockerfile {
2023-05-11 19:07:53 +02:00
filename 'Dockerfile_2'
2023-05-11 19:05:12 +02:00
// dir 'build'
2023-05-11 19:06:49 +02:00
// label 'label'
2023-05-11 19:05:12 +02:00
//additionalBuildArgs '--build-arg version=1.0.2'
//args '-v /tmp:/tmp'
}
}
parameters {
buildSelector (
name: 'BUILD_SELECTOR',
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts?',
)
}
stages {
stage('Load Artifact') {
steps {
script {
copyArtifacts fingerprintArtifacts: true, projectName: 's452627-training', selector: buildParameter("BUILD_SELECTOR")
}
}
}
stage('Archive Output') {
steps {
2023-05-11 19:25:30 +02:00
archiveArtifacts 'metrics.txt'
2023-05-11 19:05:12 +02:00
}
}
}
}