31 lines
723 B
Groovy
31 lines
723 B
Groovy
pipeline {
|
|
parameters{
|
|
string(
|
|
defaultValue: 'kaerde',
|
|
description: 'Kaggle username',
|
|
name: 'KAGGLE_USERNAME',
|
|
trim: false
|
|
)
|
|
password(
|
|
defaultValue: 'e3fdd794699dbaf3ca7517dd8bb15d16',
|
|
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
|
name: 'KAGGLE_KEY'
|
|
)
|
|
}
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
}
|
|
stages {
|
|
stage('Stage 1') {
|
|
steps {
|
|
sh 'chmod u+x ./process_dataset.py'
|
|
echo 'Dataset downloaded'
|
|
echo 'Processing dataset...'
|
|
sh 'python3 process_dataset.py'
|
|
echo 'Dataset processed'
|
|
}
|
|
}
|
|
}
|
|
}
|