ium_434765/Jenkinsfile

33 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-03-27 20:52:07 +01:00
node {
2021-03-27 19:38:42 +01:00
stage('Preparation') {
2021-03-27 20:52:07 +01:00
2021-03-27 20:49:51 +01:00
properties([
parameters([
string(defaultValue: 'karopa',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false),
password(defaultValue: '',
description: 'Kaggle token',
name: 'KAGGLE_KEY')
2021-03-27 20:46:38 +01:00
2021-03-27 20:49:51 +01:00
])
]
)
2021-03-27 20:52:07 +01:00
2021-03-27 19:38:42 +01:00
}
2021-03-27 18:48:24 +01:00
stage('Clone repo') {
2021-03-27 20:49:51 +01:00
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']]])
2021-03-27 21:03:24 +01:00
sh '''
#!/usr/bin/env bash
chmod 777 get_data_simple.sh
./get_data_simple.sh
'''
2021-03-27 20:49:51 +01:00
archiveArtifacts data_dev
archiveArtifacts data_shuf
archiveArtifacts data_test
archiveArtifacts data_train
}
2021-03-27 19:38:42 +01:00
}
2021-03-27 20:52:07 +01:00
}