s407259-mlworkshops/Jenkinsfile
2019-04-26 13:21:09 +02:00

27 lines
620 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Copy Archive') {
steps {
script {
step ([$class: 'CopyArtifact',
projectName: 'ASR-eval',
target: 'Infra']);
sh 'git --version'
sh 'git checkout'
sh 'python3 script.py'
archiveArtifacts artifacts: 'num_lines.txt'
sh 'pip3 install pandas'
sh 'python3 calculate_metrics.py'
}
}
}
}
}