From 096a7d45dc56d29313cc481d07e5a522777d6ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Miko=C5=82ajski?= Date: Mon, 17 Apr 2023 20:51:29 +0200 Subject: [PATCH] Update 'Jenkinsfile' --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 8ba4342..98d64be 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,6 +25,9 @@ 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 'mv temp.csv waterQuality1.csv' sh 'python3 create_dataset.py >> output.txt' archiveArtifacts artifacts: 'waterQuality.csv, output.txt' }