This commit is contained in:
Michał Ulaniuk 2022-03-27 23:12:33 +02:00
parent 3d939b1a7b
commit 09dbff1aed

4
Jenkinsfile vendored
View File

@ -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'
}
}