s407259-mlworkshops/Jenkinsfile

16 lines
357 B
Plaintext
Raw Normal View History

2019-04-26 11:01:34 +02:00
pipeline {
2019-04-26 11:02:35 +02:00
agent
2019-04-26 11:01:34 +02:00
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
filter: "packages/infra*.zip",
target: 'Infra']);
}
2019-04-26 11:00:51 +02:00
}
}
2019-04-26 11:01:34 +02:00
}
}