s416239-mlworkshops/Jenkinsfile

24 lines
863 B
Plaintext
Raw Normal View History

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-03 17:56:54 +02:00
sh('chmod +x ./lines.sh')
2020-04-03 16:13:27 +02:00
sh('./lines.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'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
2020-04-03 14:12:27 +02:00
}
}
}
}