21 lines
750 B
Groovy
21 lines
750 B
Groovy
pipeline {
|
|
agent { dockerfile true }
|
|
|
|
stages {
|
|
stage('Hello') {
|
|
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/s416267/s416267-mlworkshops']]])
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
|
sh('chmod +x ./lines.sh')
|
|
sh('./lines.sh')
|
|
archiveArtifacts 'lines_number.txt'
|
|
archiveArtifacts 'wer.txt'
|
|
archiveArtifacts 'srr.txt'
|
|
archiveArtifacts 'wer.tsv'
|
|
archiveArtifacts 'wikiniews_results.tsv'
|
|
}
|
|
}
|
|
}
|
|
} |