asdadsdas

This commit is contained in:
ulaniuk 2022-04-03 22:36:13 +02:00
parent a774639755
commit 8fc2e02e74

6
Jenkinsfile vendored
View File

@ -38,14 +38,18 @@ pipeline {
sh 'docker build -t ium .' sh 'docker build -t ium .'
} }
} }
stage("Data Preparation") { stage("Data Preparation") {
steps { steps {
sh 'echo "PREPARATION"'
sh "chmod u+x ./preparation.sh"
sh "./preparation.sh" sh "./preparation.sh"
archiveArtifacts 'KaggleV2-May-2016.csv' archiveArtifacts 'KaggleV2-May-2016.csv'
} }
} }
stage("Statistics") { stage("Statistics") {
steps { steps {
sh 'echo "STATISTICS"'
sh "chmod u+x ./statistics.sh"
sh "./statistics.sh" sh "./statistics.sh"
archiveArtifacts 'statistics.csv' archiveArtifacts 'statistics.csv'
} }