s407254-mlworkshops/Jenkinsfile
2019-04-26 11:07:45 +02:00

13 lines
302 B
Groovy

pipeline {
agent any
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
target: 'Infra']);
}
}
}
}