From 5d7116ff3d1f27e2bf75709b949198bc3190a779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Miko=C5=82ajski?= Date: Sat, 15 Apr 2023 05:08:36 +0200 Subject: [PATCH] Update 'Jenkinsfile' --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 41924a2..3978bfd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,10 +24,10 @@ node { // Run the maven build withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { - sh 'kaggle datasets download -d mssmartypants/water-quality' - sh 'unzip -o water-quality.zip' - sh 'python3 create_dataset.py' - archiveArtifacts artifacts: 'waterQuality.csv' + sh 'kaggle datasets download -d mssmartypants/water-quality > output.txt' + sh 'unzip -o water-quality.zip >> output.txt' + sh 'python3 create_dataset.py >> output.txt' + archiveArtifacts artifacts: 'waterQuality.csv, output.txt' } } } \ No newline at end of file