blob: db65fc15e7480895c9877d8527eb93e4b37911df [file] [log] [blame]
#!/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")
}
}
}
}