s416239-mlworkshops/Jenkinsfile

27 lines
1010 B
Groovy

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/s416239/s416239-mlworkshops.git']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh('chmod +x ./licz_linie_a_potem_metryki.sh')
sh('./licz_linie_a_potem_metryki.sh')
archiveArtifacts 'lines_number.txt'
archiveArtifacts 'reference.txt'
archiveArtifacts 'hypothesis.txt'
archiveArtifacts 'reference.trn'
archiveArtifacts 'hypothesis.trn'
archiveArtifacts 'wer.tsv'
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wyniki'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
}
}
}
}