ium_487184/Jenkinsfile
bartosz.maslanka.consultant 493b2e6e37 jen
2023-04-21 16:10:02 +02:00

29 lines
1001 B
Groovy

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'
)
])
])
}
stage('Build') {
// Run the maven build
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'kaggle datasets download -d elakiricoder/gender-classification-dataset > output.txt'
sh 'ls -l'
archiveArtifacts artifacts: 'gender_classification_v7.csv, output.txt'
}
}
}