ium_464913/Jenkinsfile

33 lines
1017 B
Plaintext
Raw Normal View History

2024-03-20 14:37:27 +01:00
pipeline {
agent any
2024-03-20 15:12:48 +01:00
parameters {
string (
defaultValue: 'vskyper',
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',
)
}
2024-03-20 14:37:27 +01:00
stages {
stage('Clone Repository') {
steps {
2024-03-20 14:52:10 +01:00
// Clone the Git repository
2024-03-20 14:37:27 +01:00
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s464913/ium_464913'
}
}
2024-03-20 15:12:48 +01:00
stage('Download dataset') {
withEnv(['KAGGLE_USERNAME=${params.KAGGLE_USERNAME}', 'KAGGLE_KEY=${params.KAGGLE_KEY}']) {
steps {
// Download dataset from kaggle
sh 'pip install kaggle'
sh 'kaggle datasets download -d mlg-ulb/creditcardfraud'
}
}
}
2024-03-20 14:24:07 +01:00
}
2024-03-20 14:21:31 +01:00
}