Chmod
This commit is contained in:
parent
6157947c4f
commit
5a0dbd54b2
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -27,8 +27,8 @@ 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("""-w=${WORKSPACE} """){
|
testImage.inside{
|
||||||
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}",
|
||||||
@ -36,6 +36,7 @@ node {
|
|||||||
"CUTOFF=${params.CUTOFF}" ]) {
|
"CUTOFF=${params.CUTOFF}" ]) {
|
||||||
sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME'''
|
sh '''echo KAGGLE_USERNAME: $KAGGLE_USERNAME'''
|
||||||
sh '''ls'''
|
sh '''ls'''
|
||||||
|
sh "chmod +x -R download_dataset.sh"
|
||||||
sh './download_dataset.sh'
|
sh './download_dataset.sh'
|
||||||
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'
|
||||||
|
Loading…
Reference in New Issue
Block a user