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 {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's434784-create-dataset',
selector: buildParameter('BUILD_SELECTOR'),
filter: "data*",
target: 'Infra']);
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 's434784-create-dataset',
selector: buildParameter('BUILD_SELECTOR'),
filter: "data*",
target: 'Infra']);
}
}
}
}