From d0947dc5889885caec322bed6a2030abe8043e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Miko=C5=82ajski?= Date: Mon, 17 Apr 2023 20:57:10 +0200 Subject: [PATCH] Update 'Jenkinsfile' --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 98d64be..7816bbf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,8 +25,7 @@ node { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { sh 'kaggle datasets download -d mssmartypants/water-quality > output.txt' sh 'unzip -o water-quality.zip >> output.txt' - sh 'mapfile -t lines < waterQuality1.csv' - sh 'shuf -e "${lines[@]}" | head -n 30 > temp.csv' + sh 'head -n 30 waterQuality1.csv > temp.csv' sh 'mv temp.csv waterQuality1.csv' sh 'python3 create_dataset.py >> output.txt' archiveArtifacts artifacts: 'waterQuality.csv, output.txt'