ium_487184/Jenkinsfile

26 lines
893 B
Plaintext
Raw Normal View History

2023-04-21 16:05:54 +02:00
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'bartekmalanka',
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'
)
2023-04-21 15:56:43 +02:00
])
2023-04-21 16:05:54 +02:00
])
}
stage('Build') {
// Run the maven build
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
2023-04-21 15:56:43 +02:00
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
2023-04-21 16:05:54 +02:00
sh 'kaggle datasets download -d elakiricoder/gender-classification-dataset > output.txt'
2023-04-21 15:03:48 +02:00
}
}
2023-04-21 16:05:54 +02:00
}