s407259-mlworkshops/Jenkinsfile
2019-04-26 12:13:44 +02:00

23 lines
500 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'
archiveArtifacts artifacts: 'num_lines.txt'
sh 'python3 calculate_metrics.py'
}
}
}
}