2023-03-26 16:07:25 +02:00
|
|
|
node {
|
|
|
|
stage('Preparation') {
|
|
|
|
properties([
|
|
|
|
parameters([
|
|
|
|
string(
|
|
|
|
defaultValue: 'jaszwajcar',
|
|
|
|
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-03-26 16:26:14 +02:00
|
|
|
|
|
|
|
stage('checkout: Check out from version control') {
|
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's487197', url: 'https://git.wmi.amu.edu.pl/s487197/ium_487197']]])
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Shell Script') {
|
2023-03-26 16:07:25 +02:00
|
|
|
// Run the maven build
|
2023-03-26 16:26:14 +02:00
|
|
|
sh 'chmod u+x download_dataset.sh'
|
2023-03-26 16:07:25 +02:00
|
|
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
|
|
|
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
|
|
|
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
|
2023-03-26 16:26:14 +02:00
|
|
|
sh './download_dataset.sh'
|
|
|
|
archiveArtifacts artifacts: 'baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv'
|
2023-03-26 16:07:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|