s421813-mlworkshops/Jenkinsfile
2019-04-26 11:14:36 +02:00

21 lines
620 B
Groovy

pipeline {
agent { dockerfile true }
stages {
stage('Test') {
steps {
copyArtifacts filter: 'wikiniews_results.tsv',
fingerprintArtifacts:
true, projectName: 'ASR-eval', selector: lastSuccessful()
checkout([$class: 'GitSCM', branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg:
[], userRemoteConfigs: [[url:
'https://git.wmi.amu.edu.pl/s421813/s421813-mlworkshops.git']]])
sh label: '', script: 'chmod 777 counter.sh'
sh label: '', script: './counter.sh'
archiveArtifacts 'txt.txt'
}
}
}
}