s407259-mlworkshops/Jenkinsfile
Tomasz Łysiak 816d4f2f16 v3
2019-04-26 11:38:25 +02:00

20 lines
516 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'
publishers {
archiveArtifacts('build/test-output/**/*.html')
}
}
}
}
}