Data Preparation and Statistics
This commit is contained in:
parent
ea7bbc2f05
commit
3d939b1a7b
16
Jenkinsfile
vendored
16
Jenkinsfile
vendored
@ -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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user