y
This commit is contained in:
szymonj98 2022-03-27 12:29:09 +02:00
commit 152f57d3a1
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -30,7 +30,7 @@ pipeline {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]]) 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 "chmod u+x ./dataset_download.sh"
sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./dataset_download.sh" sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./dataset_download.sh"
archiveArtifacts 'data.txt' archiveArtifacts 'data.csv'
} }
} }
} }

View File

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