s407254-mlworkshops/Jenkinsfile
2019-04-26 10:49:02 +02:00

13 lines
230 B
Groovy

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