s407259-mlworkshops/Jenkinsfile
Tomasz Łysiak 1304d20719 v2
2019-04-26 11:03:17 +02:00

16 lines
361 B
Groovy

pipeline {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
filter: "packages/infra*.zip",
target: 'Infra']);
}
}
}
}
}