s416251-mlworkshops/jenkinsfile

25 lines
827 B
Plaintext
Raw Permalink Normal View History

2020-04-03 13:55:25 +02:00
pipeline {
2020-04-03 16:07:22 +02:00
agent { dockerfile true }
2020-04-03 13:55:25 +02:00
stages {
stage('Stage 1') {
steps {
2020-04-03 15:24:22 +02:00
echo 'Hello World'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git']]])
2020-04-03 15:40:47 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
2020-04-03 15:51:06 +02:00
sh('chmod +x ./lines.sh')
sh(' ./lines.sh')
archiveArtifacts 'lines_number.txt'
2020-04-06 21:38:01 +02:00
archiveArtifacts 'wer.txt'
2020-04-21 20:49:44 +02:00
archiveArtifacts 'hypothesis.trn'
archiveArtifacts 'scores'
2020-04-06 21:57:55 +02:00
archiveArtifacts 'srr.txt'
archiveArtifacts 'wer.tsv'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
2020-04-03 13:55:25 +02:00
}
}
}
2020-04-03 15:24:22 +02:00
}
2020-04-03 15:40:47 +02:00