changed params usage
This commit is contained in:
parent
9ec22549f7
commit
373b256479
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@ -22,10 +22,10 @@ pipeline {
|
||||
stages {
|
||||
stage('Download data') {
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
||||
withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${KAGGLE_KEY}" ]) {
|
||||
sh 'chmod 777 ./data_download.sh'
|
||||
sh './data_download.sh --cutoff ${params.CUTOFF}'
|
||||
sh './data_download.sh --cutoff ${CUTOFF}'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user