2024-03-23 20:49:49 +01:00
|
|
|
pipeline {
|
|
|
|
agent any
|
|
|
|
|
|
|
|
parameters {
|
2024-03-25 20:03:27 +01:00
|
|
|
string(name: 'KAGGLE_USERNAME', defaultValue: 'gulczas', description: 'Kaggle username')
|
2024-03-25 21:06:06 +01:00
|
|
|
password(name: 'KAGGLE_KEY', defaultValue: '', description: 'Kaggle API key')
|
2024-03-23 20:49:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Clone Repository') {
|
|
|
|
steps {
|
|
|
|
git 'https://git.wmi.amu.edu.pl/s464953/ium_464953.git'
|
|
|
|
}
|
|
|
|
}
|
2024-03-25 21:17:08 +01:00
|
|
|
stage('Cleanup Artifacts') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
sh 'rm -rf artifacts'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-05-08 21:28:56 +02:00
|
|
|
}
|
2024-05-08 21:28:11 +02:00
|
|
|
|
2024-03-23 20:49:49 +01:00
|
|
|
}
|