s452097-mlworkshops/Jenkinsfile
2020-04-03 12:40:58 +02:00

18 lines
608 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452097/s452097-mlworkshops.git']]])
}
}
stage('Copy results'){
steps {
copyArtifacts filter: 'wikinews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
}
}
}
}