From 29ddeaba9f16cf291ac38563b3a43b5eaffbdd01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Sk=C3=B3rzewski?= Date: Wed, 20 Mar 2024 14:45:30 +0100 Subject: [PATCH] Update Jenkinsfile: create dataset --- Jenkinsfile | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8821544..49a4e46 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,5 @@ pipeline { agent any - //Definijuemy parametry, które będzie można podać podczas wywoływania zadania - parameters { - string ( - defaultValue: 'Hello World!', - description: 'Tekst, którym chcesz przywitać świat', - name: 'INPUT_TEXT', - trim: false - ) - } stages { stage('Checkout') { steps { @@ -18,5 +9,10 @@ pipeline { userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/pms/ium-s301654']]) } } + stage('Download') { + steps { + sh './create-dataset.sh' + } + } } } \ No newline at end of file