s407608-mlworkshops/Jenkinsfile
2019-04-26 13:21:09 +02:00

16 lines
690 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Generate results') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '8cdbf19a-e62d-4807-9112-bc7a8d225074', url: 'https://git.wmi.amu.edu.pl/s407608/s407608-mlworkshops']]])
sh 'sh my_shell_script.sh wikiniews_results.tsv > results.txt'
archiveArtifacts 'results.txt'
sh 'sh evaluation.sh wikiniews_results.tsv'
}
}
}
}