This commit is contained in:
Maciej 2021-03-29 03:07:27 +02:00
parent fb1b46b678
commit 497850d44f

19
stats/Jenkinsfile vendored
View File

@ -1,15 +1,16 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Copy Archive') { stage('Copy Archive') {
steps { steps {
script { script {
step ([$class: 'CopyArtifact', step ([$class: 'CopyArtifact',
projectName: 's434784-create-dataset', projectName: 's434784-create-dataset',
selector: buildParameter('BUILD_SELECTOR'), selector: buildParameter('BUILD_SELECTOR'),
filter: "data*", filter: "data*",
target: 'Infra']); target: 'Infra']);
}
} }
} }
} }