This commit is contained in:
szymonj98 2022-03-23 19:54:46 +01:00
parent 22e5e48595
commit c77038602b
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
echo 'Hello world!!!'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]])
sh "chmod u+x ./dataset_download.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} ${CUTOFF} ./dataset_download.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./dataset_download.sh"
archiveArtifacts 'data.txt'
}
}

View File

@ -2,5 +2,5 @@
kaggle datasets download -d tamber/steam-video-games
unzip -o steam-video-games.zip
> data.txt
head -n $3 steam-200k.csv >> data.txt
head -n $CUTOFF steam-200k.csv >> data.txt