This commit is contained in:
Kamil Paprota 2020-04-03 16:40:46 +02:00
parent 63ef809c9a
commit c3fd9b0214

View File

@ -4,18 +4,17 @@ pipeline {
stages {
stage('Hello') {
steps {
echo 'Hello World'
echo 'Trigger Check'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh('chmod +x ./lines.sh')
sh('./lines.sh')
archiveArtifacts 'lines_number.txt'
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wer.tsv'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
}
git 'https://git.wmi.amu.edu.pl/s416267/s416267-mlworkshops'
copyArtifacts filter: 'srr.txt, wer.txt', fingerprintArtifacts: true, optional: true, projectName: 's416267-metrics', target: './'
}
}
stage('Wykresy') {
step{
sh('chmod +x ./plots.sh')
sh('./lots.sh wer srr')
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}