2020-04-03 14:12:27 +02:00
|
|
|
pipeline {
|
2020-04-06 18:35:15 +02:00
|
|
|
agent { dockerfile true }
|
2020-04-03 14:12:27 +02:00
|
|
|
stages {
|
|
|
|
stage('Stage 1') {
|
|
|
|
steps {
|
|
|
|
echo 'Hello world!'
|
2020-04-03 15:39:19 +02:00
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
|
2020-04-03 16:37:36 +02:00
|
|
|
doGenerateSubmoduleConfigurations: false, extensions: [], gitTool:'Default',
|
2020-04-03 15:39:19 +02:00
|
|
|
submoduleCfg: [], userRemoteConfigs: [[url:
|
|
|
|
'https://git.wmi.amu.edu.pl/s416239/s416239-mlworkshops.git']]])
|
2020-04-03 15:47:05 +02:00
|
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
2020-04-21 15:08:23 +02:00
|
|
|
sh('chmod +x ./licz_linie_a_potem_metryki.sh')
|
|
|
|
sh('./licz_linie_a_potem_metryki.sh')
|
2020-04-21 14:51:41 +02:00
|
|
|
archiveArtifacts 'lines_number.txt'
|
2020-04-21 15:02:37 +02:00
|
|
|
archiveArtifacts 'reference.txt'
|
|
|
|
archiveArtifacts 'hypothesis.txt'
|
2020-04-16 21:19:41 +02:00
|
|
|
archiveArtifacts 'wer.tsv'
|
|
|
|
archiveArtifacts 'wer.txt'
|
|
|
|
archiveArtifacts 'srr.txt'
|
2020-04-21 15:16:14 +02:00
|
|
|
archiveArtifacts 'scores'
|
2020-04-16 21:19:41 +02:00
|
|
|
archiveArtifacts 'wikiniews_results_with_wer.tsv'
|
2020-04-03 14:12:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|