This commit is contained in:
bartosz.maslanka.consultant 2023-04-21 16:05:54 +02:00
parent c467dc04b0
commit d606d60ec0

58
Jenkinsfile vendored
View File

@ -1,42 +1,26 @@
pipeline {
stages {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'tomaszzitkiewicz',
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'
)
])
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('Checkout') {
steps {
git branch: 'master', url: 'https://git.wmi.amu.edu.pl/s487184/ium_487184'
}
}
stage('Run Script') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
])
}
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'
}
}
}
stage('Archive Artifacts') {
steps {
archiveArtifacts 'output.txt'
}
sh 'kaggle datasets download -d elakiricoder/gender-classification-dataset > output.txt'
}
}
}