25 lines
827 B
Plaintext
25 lines
827 B
Plaintext
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
echo 'Hello World'
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git']]])
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
sh('chmod +x ./lines.sh')
|
|
sh(' ./lines.sh')
|
|
archiveArtifacts 'lines_number.txt'
|
|
archiveArtifacts 'wer.txt'
|
|
archiveArtifacts 'hypothesis.trn'
|
|
archiveArtifacts 'scores'
|
|
archiveArtifacts 'srr.txt'
|
|
archiveArtifacts 'wer.tsv'
|
|
archiveArtifacts 'wikiniews_results_with_wer.tsv'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|