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 } } }