kaggle config
This commit is contained in:
parent
c85e947ae2
commit
d2347c3528
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -1,8 +1,21 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
|
stage('Preparation') {
|
||||||
|
properties([
|
||||||
|
parameters([
|
||||||
|
string(defaultValue: 'karopa',
|
||||||
|
description: 'Kaggle username',
|
||||||
|
name: 'KAGGLE_USERNAME',
|
||||||
|
trim: false),
|
||||||
|
password(defaultValue: '',
|
||||||
|
description: 'Kaggle token',
|
||||||
|
name: 'KAGGLE_KEY')
|
||||||
|
]
|
||||||
|
)
|
||||||
|
}
|
||||||
stage('Clone repo') {
|
stage('Clone repo') {
|
||||||
steps {
|
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']]])
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s434765/ium_434765']]])
|
||||||
sh 'chmod 777 get_data_simple.sh'
|
sh 'chmod 777 get_data_simple.sh'
|
||||||
sh './get_data_simple.sh'
|
sh './get_data_simple.sh'
|
||||||
|
Loading…
Reference in New Issue
Block a user