From 14cd3abaf11d385c9586588f97d45d55762b715d Mon Sep 17 00:00:00 2001 From: s452487 Date: Sun, 24 Mar 2024 17:21:25 +0100 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b910356..ad7cfdd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,17 @@ pipeline { agent any stages { - stage('Dataset_download') { + stage('checkout: Check out from version control') { steps { - echo 'username_visibility_test2: ${kaggle_username}' echo 'password_visibility_test2: ${kaggle_password}' + + git clone https://git.wmi.amu.edu.pl/s452487/ium_452487.git + } + } + stage('sh: Shell Script') { + steps { + sh dataset_download.sh } } }