docker integration
This commit is contained in:
parent
17218cd3cb
commit
379beaf2d9
29
Jenkinsfile
vendored
29
Jenkinsfile
vendored
@ -20,18 +20,23 @@ node {
|
||||
|
||||
}
|
||||
stage('Clone repo') {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]){
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
||||
sh '''
|
||||
#!/usr/bin/env bash
|
||||
chmod 777 get_data_simple.sh
|
||||
./get_data_simple.sh $CUTOFF | tee output.txt
|
||||
'''
|
||||
archiveArtifacts "data_dev"
|
||||
archiveArtifacts "data_shuf"
|
||||
archiveArtifacts "data_test"
|
||||
archiveArtifacts "data_train"
|
||||
archiveArtifacts "output.txt"
|
||||
checkout scm
|
||||
def testImage = docker.build("karopa/ium:01")
|
||||
testImage.inside {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]){
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
||||
sh '''
|
||||
#!/usr/bin/env bash
|
||||
chmod 777 get_data_simple.sh
|
||||
./get_data_simple.sh $CUTOFF | tee output.txt
|
||||
'''
|
||||
archiveArtifacts "data_dev"
|
||||
archiveArtifacts "data_shuf"
|
||||
archiveArtifacts "data_test"
|
||||
archiveArtifacts "data_train"
|
||||
archiveArtifacts "output.txt"
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user