s407254-mlworkshops/Jenkinsfile
2019-04-26 11:51:17 +02:00

24 lines
462 B
Groovy

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