24 lines
834 B
Groovy
24 lines
834 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
echo 'Hello world!'
|
|
echo 'Trigger Check'
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
|
|
doGenerateSubmoduleConfigurations: false, extensions: [], gitTool:'Default',
|
|
submoduleCfg: [], userRemoteConfigs: [[url:
|
|
'https://git.wmi.amu.edu.pl/s407568/s407568-mlworkshops.git']]])
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
sh('chmod +x ./zliczanie.sh')
|
|
sh('./zliczanie.sh')
|
|
archiveArtifacts 'lines_number.txt'
|
|
archiveArtifacts 'wer.txt'
|
|
archiveArtifacts 'srr.txt'
|
|
archiveArtifacts 'wer.tsv'
|
|
archiveArtifacts 'wikiniews_results_with_wer.tsv'
|
|
archiveArtifacts 'Scores2'
|
|
}
|
|
}
|
|
}
|
|
} |