#!/usr/bin/env groovy | |
def boards = [ | |
"enterprise" | |
] | |
boards.each { | |
def boardName = it | |
pipelineJob("image.unstable.${boardName}") { | |
definition { | |
cpsScm { | |
scm { | |
git { | |
remote { | |
url('https://coral.googlesource.com/gke-jenkins') | |
} | |
branches('*/master') | |
} | |
} | |
scriptPath("cicd/pipelines/${boardName}/image_unstable.jenkins") | |
} | |
} | |
} | |
} |