Fix
This commit is contained in:
parent
bc5763c731
commit
cc15753716
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
@ -27,15 +27,16 @@ node {
|
||||
}
|
||||
stage('Dockerfile'){
|
||||
def testImage = docker.image("test-image")
|
||||
testImage.inside{
|
||||
sh "chmod +x -R ${env.WORKSPACE}"
|
||||
testImage.inside("""-w=${WORKSPACE} """){
|
||||
stage('Shell Script') {
|
||||
// Run the maven build
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}",
|
||||
"CUTOFF=${params.CUTOFF}" ]) {
|
||||
sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME'''
|
||||
sh '''chmod u+x kaggle datasets download -d sohier/crime-in-baltimore'''
|
||||
sh '''chmod u+x unzip crime-in-baltimore.zip'''
|
||||
sh "kaggle datasets download -d sohier/crime-in-baltimore"
|
||||
sh "unzip crime-in-baltimore.zip"
|
||||
sh 'python3 data.py'
|
||||
archiveArtifacts artifacts: 'BPD_Part_1_Victim_Based_Crime_Data.csv,baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv'
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user