Dockerfile enabled

This commit is contained in:
Kacper Kurzeja 2019-04-26 12:24:59 +02:00
parent 5203886f1e
commit 3d1079be2b

13
Jenkinsfile vendored
View File

@ -1,8 +1,9 @@
node {
copyArtifacts filter: '*', 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/s442639/s442639-mlworkshops.git']]])
sh label: '', script: './script.sh'
archiveArtifacts 'output'
sh 'ls -l'
sh 'cat output'
agent { dockerfile true }
copyArtifacts filter: '*', 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/s442639/s442639-mlworkshops.git']]])
sh label: '', script: './script.sh'
archiveArtifacts 'output'
sh 'ls -l'
sh 'cat output'
}