Zaktualizuj 'Jenkinsfile'

This commit is contained in:
Szymon Parafiński 2022-03-27 23:28:21 +02:00
parent 28aedb300f
commit 57a81f1fc3

7
Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
string( string(
defaultValue: '1', defaultValue: '',
description: 'Cutoff lines', description: 'Cutoff lines',
name: 'CUTOFF' name: 'CUTOFF'
) )
@ -39,9 +39,8 @@ pipeline {
sh 'kaggle datasets list' sh 'kaggle datasets list'
} }
} }
sh 'echo Downloading dataset' sh './download.sh $CUTOFF'
sh './download_new.sh' archiveArtifacts artifacts: 'all_games.csv.dev, all_games.csv.test, all_games.csv.train', followSymlinks: false
archiveArtifacts artifacts: 'imdb_top_1000_dev.csv, imdb_top_1000_test.csv, imdb_top_1000_train.csv', followSymlinks: false
} }
} }
} }