s407254-mlworkshops/Jenkinsfile
2019-04-26 11:30:20 +02:00

23 lines
419 B
Groovy

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