s407259-mlworkshops/Jenkinsfile
Tomasz Łysiak ca8a0a886d v3
2019-04-26 11:37:36 +02:00

18 lines
449 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('build/test-output/**/*.html')
}
}
}
}