ium_z487179/datasetStats/Jenkinsfile
2023-04-15 00:13:06 +02:00

24 lines
668 B
Groovy

pipeline {
agent any
parameters {
choice(
name: 'BUILD_SELECTOR',
choices: ['lastSuccessfulBuild()', 'lastStableBuild()', 'specificBuild(123)', 'tags(\'release-*\')'],
description: 'Which build to use for copying artifacts',
defaultValue: 'lastSuccessfulBuild()'
)
}
stages {
stage('Copy artifacts') {
steps {
script {
copyArtifacts(
projectName: 'z-s487179-create-dataset',
selector: "${params.BUILD_SELECTOR}"
)
}
}
}
}
}