Jenkinsfile modified for create dataset

This commit is contained in:
Filip Izydorczyk 2021-05-25 17:37:11 +02:00
parent 30396e4036
commit 8b4283e8a4
2 changed files with 8 additions and 4 deletions

9
Jenkinsfile vendored
View File

@ -10,14 +10,15 @@ pipeline {
} }
stage('sh: Shell Script') { stage('sh: Shell Script') {
steps { steps {
sh 'chmod +x download.sh' sh 'chmod +x data.sh'
sh './download.sh' sh './data.sh'
} }
} }
stage('archiveArtifacts') { stage('archiveArtifacts') {
steps { steps {
archiveArtifacts 'top.csv' archiveArtifacts 'train_set.csv'
archiveArtifacts 'netflix_titles.csv' archiveArtifacts 'dev_set.csv'
archiveArtifacts 'test_set.csv'
} }
} }
} }

View File

@ -1,4 +1,7 @@
rm ./results.csv rm ./results.csv
rm ./train_set.csv
rm ./dev_set.csv
rm ./test_set.csv
rm ./*.zip rm ./*.zip
kaggle datasets download -d mateusdmachado/csgo-professional-matches kaggle datasets download -d mateusdmachado/csgo-professional-matches
unzip ./*.zip unzip ./*.zip