From 31c24c98387d5676741800767c9c9fa0073c6b8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ga=C5=82ka?= Date: Tue, 18 Apr 2023 19:43:50 +0200 Subject: [PATCH] Update 'Jenkinsfile' --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bee2d13..daa8316 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,8 +26,6 @@ pipeline { stage('checkout') { steps { //Wypisz wartość parametru w konsoli (To nie jest polecenie bash, tylko groovy!) - echo "INPUT_TEXT: ${KAGGLE_USERNAME}" - // sh 'rm -rf ium_z434686' sh 'git clone https://git.wmi.amu.edu.pl/s434686/ium_z434686' } @@ -48,6 +46,9 @@ pipeline { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { sh 'kaggle datasets download -d rush4ratio/video-game-sales-with-ratings' sh 'ls -a | tee ls.txt' + sh 'unzip video-game-sales-with-ratings.zip -d data' + sh 'rm video-game-sales-with-ratings.zip' + sh 'ls -a data/ | tee ls.txt' } } }