ium_495716/Jenkinsfile
2024-03-20 14:48:24 +01:00

31 lines
757 B
Groovy

pipeline {
agent any
parameters {
string(
defaultValue: 'worldwidepaniel',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
),
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
}
stages {
stage('Checkout') {
steps {
checkout scm
sh 'ls -las'
}
}
stage('Download dataset and manipulate dataset') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh "./data_download.sh"
}
}
}
}