This commit is contained in:
Maciej 2021-03-29 01:04:09 +02:00
parent a3d5cab581
commit 389f5464a4

7
Jenkinsfile vendored
View File

@ -9,6 +9,10 @@ pipeline {
trim: false trim: false
) )
} }
environment {
KAGGLE_KEY = ${params.key}
KAGGLE_USERNAME = ${params.username}
}
stages { stages {
stage('checkout: Check out from version control') { stage('checkout: Check out from version control') {
@ -18,8 +22,6 @@ pipeline {
} }
stage('sh: Shell Script') { stage('sh: Shell Script') {
steps { steps {
withEnv(['KAGGLE_USERNAME=$params.username',
'KAGGLE_KEY=$params.key' ]) {
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME' sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
sh 'chmod +x preparations.sh' sh 'chmod +x preparations.sh'
sh './preparations.sh' sh './preparations.sh'
@ -27,4 +29,3 @@ pipeline {
} }
} }
} }
}