s416296-mlworkshops/Jenkinsfile
2020-04-19 22:20:06 +02:00

20 lines
1003 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416296/s416296-mlworkshops.git']]])
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 's416296-metrics', selector: lastSuccessful()
copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 's416296-metrics', selector: lastSuccessful()
sh label: '', script: 'chmod a+rwx script.sh'
sh label: '', script: './script.sh'
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
build 's416296-plots'
}
}
}
}