metrics calculation

This commit is contained in:
Tomasz Łysiak 2019-04-26 12:49:59 +02:00
parent 2ec9d1ab3a
commit 17a7726670

5
Jenkinsfile vendored
View File

@ -3,19 +3,18 @@ pipeline {
stages {
stage('Copy Archive') {
steps {
sh 'git --version'
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 'python3 calculate_metrics.py'
}