From 389af9efede825e704990d4e250ce281434a3906 Mon Sep 17 00:00:00 2001 From: AWieczarek Date: Sun, 24 Mar 2024 15:45:33 +0100 Subject: [PATCH] Added new jenkinsfile and kuggle download script --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5d586b1..6c0277a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,14 +5,14 @@ pipeline { string(name: 'KAGGLE_DATASET_ID', defaultValue: '', description: 'Kaggle dataset') string(name: 'REPO_URL', defaultValue: '', description: 'Git Url') string(name: 'CUTOFF', defaultValue: '10000', description: 'Liczba wierszy do obcięcia ze zbioru danych') - string(name: 'KAGGLE_USERNAME', defaultValue: '', description: 'Kaggle username') + string(name: 'KAGGLE_USERNAME', defaultValue: '', description: 'Kaggle username') password(name: 'KAGGLE_KEY', defaultValue: '', description: 'Kaggle API key') } stages { stage('Clone Repository') { steps { - git url: "${params.REPO_URL}" + git url: "https://git.wmi.amu.edu.pl/s464979/ium_464979.git" } }