s407259-mlworkshops/Jenkinsfile
2019-04-26 12:31:34 +02:00

26 lines
595 B
Groovy

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