#!/usr/bin/env groovy | |
pipelineJob("task.mirror.update") { | |
description("Update all apt mirrors") | |
definition { | |
cpsScm { | |
scm { | |
git { | |
remote { | |
url('https://coral.googlesource.com/gke-jenkins') | |
} | |
branches('*/master') | |
} | |
} | |
scriptPath("cicd/pipelines/tasks/task_update_mirrors.jenkins") | |
} | |
} | |
} |