90d1ebe61b
Some checks failed
s434704-training/pipeline/head There was a failure building this commit
17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
pipeline {
|
|
agent {dockerfile true}
|
|
parameters {
|
|
buildSelector(
|
|
defaultSelector: lastSuccessful(),
|
|
description: 'Last successfull artifact',
|
|
name: 'BUILD_SELECTOR'
|
|
)
|
|
}
|
|
stages {
|
|
stage('copyArtifacts') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434705-training/master', selector: buildParameter('BUILD_SELECTOR')
|
|
}
|
|
}
|
|
}
|
|
} |