zad 6
This commit is contained in:
parent
c77038602b
commit
3ed55cadfd
17
Jenkinsfile2
Normal file
17
Jenkinsfile2
Normal 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()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user