This commit is contained in:
szymonj98 2022-03-27 12:28:44 +02:00
parent c77038602b
commit 3ed55cadfd

17
Jenkinsfile2 Normal file
View File

@ -0,0 +1,17 @@
pipeline{
agent any
parameters {
buildSelector(
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR')
}
stages{
stage('copy artefacts') {
steps {
copyArtifacts filter: 'data.csv', fingerprintArtifacts: true, projectName: 's444386-create-dataset', selector: lastSuccessful()
}
}
}
}