s407254-mlworkshops/Jenkinsfile

14 lines
275 B
Plaintext
Raw Normal View History

2019-04-26 10:36:29 +02:00
pipeline {
agent any
stages {
2019-04-26 11:06:20 +02:00
stage('Copy Archive') {
2019-04-26 10:49:02 +02:00
steps {
script {
step ([$class: 'CopyArtifact',
2019-04-26 11:06:20 +02:00
projectName: 'ASR-eval',
target: 'Infra'
2019-04-26 10:49:02 +02:00
}
}
2019-04-26 11:06:20 +02:00
}
}
}