ium_495716/Jenkinsfile

31 lines
758 B
Plaintext
Raw Normal View History

2024-03-20 14:48:24 +01:00
pipeline {
agent any
parameters {
2024-03-20 14:53:32 +01:00
string (
2024-03-20 14:48:24 +01:00
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"
}
}
}
}