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'
|
|
|
|
archiveArtifacts 'txt.txt'
|
2019-04-26 11:14:36 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-26 10:49:06 +02:00
|
|
|
}
|