Skip to content

Commit

Permalink
Just turn stuff off for a moment while I debug this
Browse files Browse the repository at this point in the history
  • Loading branch information
rsandell committed May 18, 2017
1 parent c04b803 commit 343afad
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ pipeline {
args '-v $HOME/.m2:/root/.m2'
}
}
when {
expression {
false
}
}
steps {
unstash 'ws'
sh './mvnw -B -DskipTests=true clean compile package'
Expand All @@ -27,6 +32,11 @@ pipeline {
args '-v $HOME/.m2:/root/.m2'
}
}
when {
expression {
false
}
}
steps {
unstash 'ws'
unstash 'war'
Expand All @@ -45,20 +55,21 @@ pipeline {
docker.build('latest', 'docker/gulp/').inside {
unstash 'ws'
//sh 'gulp test'
sh "ls -l"
sh './frontEndTests.sh'
}
}
}
},
'Performance' : {
script {
node {
/*node {
docker.image('maven:3-alpine').inside('-v ${HOME}/.m2:/root/.m2') {
unstash 'ws'
unstash 'war'
sh './mvnw -B gatling:execute'
}
}
}*/
}
})
}
Expand Down

0 comments on commit 343afad

Please sign in to comment.