s407259-mlworkshops/Jenkinsfile
Tomasz Łysiak 4bdd8b8f36 v3
2019-04-26 11:30:14 +02:00

17 lines
384 B
Groovy

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