From 57a81f1fc3c8aeedf6011b1d481a26d61e3e4c21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Parafi=C5=84ski?= Date: Sun, 27 Mar 2022 23:28:21 +0200 Subject: [PATCH] Zaktualizuj 'Jenkinsfile' --- Jenkinsfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5eb6c87..087ec9e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { name: 'KAGGLE_KEY' ) string( - defaultValue: '1', + defaultValue: '', description: 'Cutoff lines', name: 'CUTOFF' ) @@ -39,9 +39,8 @@ pipeline { sh 'kaggle datasets list' } } - sh 'echo Downloading dataset' - sh './download_new.sh' - archiveArtifacts artifacts: 'imdb_top_1000_dev.csv, imdb_top_1000_test.csv, imdb_top_1000_train.csv', followSymlinks: false + sh './download.sh $CUTOFF' + archiveArtifacts artifacts: 'all_games.csv.dev, all_games.csv.test, all_games.csv.train', followSymlinks: false } } }