From 8b4283e8a4d468b90573cbc2bd4d63e5438d4622 Mon Sep 17 00:00:00 2001 From: Filip Izydorczyk Date: Tue, 25 May 2021 17:37:11 +0200 Subject: [PATCH] Jenkinsfile modified for create dataset --- Jenkinsfile | 9 +++++---- data.sh | 3 +++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 03a54ad..30fdd4a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,14 +10,15 @@ pipeline { } stage('sh: Shell Script') { steps { - sh 'chmod +x download.sh' - sh './download.sh' + sh 'chmod +x data.sh' + sh './data.sh' } } stage('archiveArtifacts') { steps { - archiveArtifacts 'top.csv' - archiveArtifacts 'netflix_titles.csv' + archiveArtifacts 'train_set.csv' + archiveArtifacts 'dev_set.csv' + archiveArtifacts 'test_set.csv' } } } diff --git a/data.sh b/data.sh index 95489af..b7bc756 100644 --- a/data.sh +++ b/data.sh @@ -1,4 +1,7 @@ rm ./results.csv +rm ./train_set.csv +rm ./dev_set.csv +rm ./test_set.csv rm ./*.zip kaggle datasets download -d mateusdmachado/csgo-professional-matches unzip ./*.zip