s416422-mlworkshops/Jenkinsfile

17 lines
639 B
Plaintext
Raw Permalink Normal View History

2019-04-26 12:19:40 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('Stage 1') {
steps {
copyArtifacts filter: '*', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh 'ls -l'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416422/s416422-mlworkshops.git']]])
2019-04-26 13:24:26 +02:00
sh 'sh script.sh wikiniews_results.tsv'
2019-04-26 15:41:48 +02:00
archiveArtifacts 'WER_SSR_outcomes.txt'
archiveArtifacts 'wikiniews_results2.tsv'
2019-04-26 12:19:40 +02:00
}
}
}
2019-04-26 10:51:29 +02:00
}