Skip to content

Commit

Permalink
wip: try without default
Browse files Browse the repository at this point in the history
  • Loading branch information
ingwinlu committed May 15, 2018
1 parent aad874a commit bbe2f24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def generate_docker_build_stages() {
def tasks = [:]

DOCKER_IMAGES.each { id, image ->
tasks << maybe_build_image_stage(image)
tasks << maybe_build_image_stage(image, namingStrategyTesting)
}
return tasks
}
Expand All @@ -166,7 +166,7 @@ def generate_docker_build_stages() {
* @param image Map identifying which image to build
* @param namingStrategy
*/
def maybe_build_image_stage(image, namingStrategy=this.&namingStrategyTesting) {
def maybe_build_image_stage(image, namingStrategy) {
def taskname = "build/${image.id}/"
return [(taskname): {
stage(taskname) {
Expand Down

0 comments on commit bbe2f24

Please sign in to comment.