s407259-mlworkshops/Jenkinsfile
Tomasz Łysiak 1333335f31 v3
2019-04-26 11:43:27 +02:00

18 lines
445 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'
}
}
}
}