2024-03-20 14:23:42 +01:00
|
|
|
pipeline {
|
|
|
|
agent any
|
2024-03-20 17:26:55 +01:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
password (
|
|
|
|
name: 'KAGGLE_USERNAME',
|
|
|
|
defaultValue: '',
|
|
|
|
description: 'Kaggle username'
|
2024-03-20 17:30:31 +01:00
|
|
|
)
|
2024-03-20 17:26:55 +01:00
|
|
|
password (
|
|
|
|
name: 'KAGGLE_KEY',
|
|
|
|
defaultValue: '',
|
|
|
|
description: 'Kaggle API key'
|
2024-03-20 17:30:31 +01:00
|
|
|
)
|
2024-03-20 17:33:00 +01:00
|
|
|
string (
|
2024-03-20 17:26:55 +01:00
|
|
|
name: 'CUTOFF',
|
|
|
|
defaultValue: '10',
|
|
|
|
description: 'Get only the first CUTOFF rows of the dataset'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2024-03-20 14:23:42 +01:00
|
|
|
stages {
|
2024-03-20 17:26:55 +01:00
|
|
|
stage('Clone repository') {
|
|
|
|
steps {
|
|
|
|
checkout scm
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Download dataset') {
|
2024-03-20 14:23:42 +01:00
|
|
|
steps {
|
2024-03-20 17:26:55 +01:00
|
|
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
|
|
|
sh './download_dataset.sh ${params.CUTOFF}'
|
|
|
|
archiveArtifacts artifacts: 'data.csv', onlyIfSuccessful: true
|
|
|
|
}
|
2024-03-20 14:23:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|