From 3d939b1a7b07cf1b87a67c79ff16b47d0136d0fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ulaniuk?= Date: Sun, 27 Mar 2022 23:05:12 +0200 Subject: [PATCH] Data Preparation and Statistics --- Jenkinsfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9385de6..723160d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,5 +33,21 @@ pipeline { } } } + stage("Dara Preparation") { + steps { + sh 'echo "PREPARATION"' + sh "chmod u+x ./preparation.sh" + sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./preparation.sh" + archiveArtifacts 'KaggleV2-May-2016.csv' + } + } + stage("Statistics") { + steps { + sh 'echo "STATISTICS"' + sh "chmod u+x ./statistics.sh" + sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./statistics.sh" + archiveArtifacts 'statistics.csv' + } + } } } \ No newline at end of file