s416242_mlworkshops/README

20 lines
802 B
Plaintext
Raw Normal View History

2020-04-03 14:20:17 +02:00
pipeline {
2020-04-03 16:09:50 +02:00
agent { dockerfile true }
2020-04-03 14:20:17 +02:00
stages {
stage('Stage 1') {
steps {
2020-04-03 15:26:44 +02:00
echo 'Hello World'
echo 'Trigger Check'
2020-04-03 15:24:30 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416242/s416242_mlworkshops.git']]])
2020-04-03 15:53:30 +02:00
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh('chmod +x ./lines.sh')
sh('./lines.sh')
2020-04-03 16:25:26 +02:00
archiveArtifacts'lines_number.txt'
2020-04-16 21:27:20 +02:00
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wer.tsv'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
2020-04-03 14:20:17 +02:00
}
}
}
}