s432211-mlworkshops/Jenkinsfile

41 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-04-20 23:20:52 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('checkoutGit') {
steps {
git 'https://git.wmi.amu.edu.pl/s432211/s432211-mlworkshops'
}
}
stage('copyArtifacts') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
2020-05-04 23:56:07 +02:00
copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 's432211-metrics', selector: lastSuccessful()
copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 's432211-metrics', selector: lastSuccessful()
2020-05-04 23:51:37 +02:00
}
2020-04-20 23:20:52 +02:00
}
stage('countLines') {
steps {
sh 'chmod 777 ./count_lines.sh'
sh './count_lines.sh'
}
}
stage('archiveArtifacts') {
steps {
archiveArtifacts 'count_lines_result.txt'
2020-05-04 23:52:29 +02:00
archiveArtifacts 'wikiniews_results.tsv'
2020-05-04 23:47:27 +02:00
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
2020-05-05 05:45:53 +02:00
archiveArtifacts 'results'
2020-05-05 05:48:44 +02:00
archiveArtifacts 'hypothesis.txt'
archiveArtifacts 'reference.txt'
archiveArtifacts 'wer.tsv'
2020-05-04 23:47:27 +02:00
}
}
2020-05-04 23:56:07 +02:00
stage("buildMetrics") {
steps {
build 's432211-plots'
}
}
2020-05-04 23:52:04 +02:00
}
2020-05-04 23:47:27 +02:00
}