From 09dbff1aed4358e6d25a3132520a8241d8fb51f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ulaniuk?= Date: Sun, 27 Mar 2022 23:12:33 +0200 Subject: [PATCH] Fix --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 723160d..ec3586e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,7 +37,7 @@ pipeline { steps { sh 'echo "PREPARATION"' sh "chmod u+x ./preparation.sh" - sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./preparation.sh" + sh "./preparation.sh" archiveArtifacts 'KaggleV2-May-2016.csv' } } @@ -45,7 +45,7 @@ pipeline { steps { sh 'echo "STATISTICS"' sh "chmod u+x ./statistics.sh" - sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./statistics.sh" + sh "./statistics.sh" archiveArtifacts 'statistics.csv' } }