From 3efdc27d00c65b64bc9499d3126d8ca2281f6cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ga=C5=82ka?= Date: Wed, 19 Apr 2023 15:45:11 +0200 Subject: [PATCH] Update 'Jenkinsfile_create_dataset' --- Jenkinsfile_create_dataset | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile_create_dataset b/Jenkinsfile_create_dataset index cf983c7..b26a378 100644 --- a/Jenkinsfile_create_dataset +++ b/Jenkinsfile_create_dataset @@ -15,7 +15,7 @@ pipeline { name: 'KAGGLE_KEY' ) string( - defaultValue: '0', + defaultValue: '500', description: 'CUTOFF', name: 'CUTOFF', trim: false @@ -44,7 +44,7 @@ pipeline { sh 'kaggle datasets download -d rush4ratio/video-game-sales-with-ratings' sh 'unzip video-game-sales-with-ratings.zip' sh 'rm video-game-sales-with-ratings.zip' - sh 'ls -a | tee dataset.csv' + sh 'move Video_Games_Sales_as_at_22_Dec_2016.csv ./ium_z434686' } } } @@ -52,7 +52,6 @@ pipeline { agent { dockerfile { filename 'create.dockerfile' - args '-v $HOME:/script' } } steps { @@ -61,16 +60,6 @@ pipeline { archiveArtifacts 'X_train.csv' archiveArtifacts 'X_dev.csv' archiveArtifacts 'X_tes.csv' - } - } - stage('Goodbye!') { - steps { - echo 'Goodbye!' - //Zarchiwizuj wynik - //archiveArtifacts 'output.txt' - archiveArtifacts 'dataset.csv' - - } } }