This commit is contained in:
Wojciech Lidwin 2023-04-04 14:36:39 +02:00
parent 5a0dbd54b2
commit 222a82e2a3

10
Jenkinsfile vendored
View File

@ -27,17 +27,17 @@ node {
} }
stage('Dockerfile'){ stage('Dockerfile'){
def testImage = docker.image("test-image") def testImage = docker.image("test-image")
sh "chmod +x -R ${env.WORKSPACE}"
testImage.inside{ testImage.inside("""-w=${WORKSPACE} """){
stage('Shell Script') { stage('Shell Script') {
// Run the maven build // Run the maven build
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}", "KAGGLE_KEY=${params.KAGGLE_KEY}",
"CUTOFF=${params.CUTOFF}" ]) { "CUTOFF=${params.CUTOFF}" ]) {
sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME''' sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME'''
sh '''ls''' sh '''echo KAGGLE_USERNAME: $KAGGLE_KEY'''
sh "chmod +x -R download_dataset.sh" sh "kaggle datasets download -d sohier/crime-in-baltimore"
sh './download_dataset.sh' sh "unzip crime-in-baltimore.zip"
sh 'python3 data.py' sh 'python3 data.py'
archiveArtifacts artifacts: 'BPD_Part_1_Victim_Based_Crime_Data.csv,baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv' archiveArtifacts artifacts: 'BPD_Part_1_Victim_Based_Crime_Data.csv,baltimore_train.csv, baltimore_test.csv, baltimore_dev.csv'
} }