s421813-mlworkshops/Jenkinsfile

22 lines
664 B
Plaintext
Raw Normal View History

2019-04-26 11:14:36 +02:00
pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv',
fingerprintArtifacts:
2019-04-26 10:46:36 +02:00
true, projectName: 'ASR-eval', selector: lastSuccessful()
2019-04-26 11:14:36 +02:00
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg:
[], userRemoteConfigs: [[url:
2019-04-26 10:52:19 +02:00
'https://git.wmi.amu.edu.pl/s421813/s421813-mlworkshops.git']]])
2019-04-26 11:03:43 +02:00
sh label: '', script: 'chmod 777 counter.sh'
sh label: '', script: './counter.sh'
2019-05-17 10:44:03 +02:00
archiveArtifacts 'out.txt'
archiveArtifacts 'wikiniews_results.tsv'
2019-04-26 11:14:36 +02:00
}
}
}
2019-04-26 10:49:06 +02:00
}