From 6fb11ffa40cffcbff4559db3024c87ced72b3688 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Mon, 7 Jun 2021 16:27:43 +0000 Subject: [PATCH] Remove old infra configuration files BUG=dawn:734 Change-Id: I37c1d2d9d468c8a3b715b30b3a6fde7e85205af9 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/53601 Commit-Queue: Ryan Harrison Commit-Queue: Corentin Wallez Auto-Submit: Ryan Harrison Reviewed-by: Corentin Wallez Reviewed-by: Austin Eng --- infra/config/global/commit-queue.cfg | 81 ------ infra/config/global/cr-buildbucket.cfg | 382 ------------------------- infra/config/global/luci-logdog.cfg | 17 -- infra/config/global/luci-milo.cfg | 127 -------- infra/config/global/luci-scheduler.cfg | 161 ----------- infra/config/global/project.cfg | 4 - 6 files changed, 772 deletions(-) delete mode 100644 infra/config/global/commit-queue.cfg delete mode 100644 infra/config/global/cr-buildbucket.cfg delete mode 100644 infra/config/global/luci-logdog.cfg delete mode 100644 infra/config/global/luci-milo.cfg delete mode 100644 infra/config/global/luci-scheduler.cfg delete mode 100644 infra/config/global/project.cfg diff --git a/infra/config/global/commit-queue.cfg b/infra/config/global/commit-queue.cfg deleted file mode 100644 index e61162d2a4..0000000000 --- a/infra/config/global/commit-queue.cfg +++ /dev/null @@ -1,81 +0,0 @@ -cq_status_host: "chromium-cq-status.appspot.com" -submit_options: < - max_burst: 4 - burst_delay: < - seconds: 480 - > -> -config_groups: < - name: "Dawn-CQ" - gerrit: < - url: "https://dawn-review.googlesource.com" - projects: < - name: "dawn" - ref_regexp: "refs/heads/.+" - > - > - verifiers: < - gerrit_cq_ability: < - committer_list: "project-dawn-committers" - dry_run_access_list: "project-dawn-tryjob-access" - > - tryjob: < - builders: < - name: "chromium/try/linux-dawn-rel" - > - builders: < - name: "chromium/try/mac-dawn-rel" - > - builders: < - name: "chromium/try/win-dawn-rel" - > - builders: < - name: "dawn/try/linux-clang-dbg-x64" - > - builders: < - name: "dawn/try/linux-clang-dbg-x86" - > - builders: < - name: "dawn/try/linux-clang-rel-x64" - > - builders: < - name: "dawn/try/linux-clang-rel-x86" - > - builders: < - name: "dawn/try/mac-dbg" - > - builders: < - name: "dawn/try/mac-rel" - > - builders: < - name: "dawn/try/presubmit" - disable_reuse: true - > - builders: < - name: "dawn/try/win-clang-dbg-x64" - > - builders: < - name: "dawn/try/win-clang-dbg-x86" - > - builders: < - name: "dawn/try/win-clang-rel-x64" - > - builders: < - name: "dawn/try/win-clang-rel-x86" - > - builders: < - name: "dawn/try/win-msvc-dbg-x64" - > - builders: < - name: "dawn/try/win-msvc-rel-x64" - > - retry_config: < - single_quota: 1 - global_quota: 2 - failure_weight: 1 - transient_failure_weight: 1 - timeout_weight: 2 - > - > - > -> diff --git a/infra/config/global/cr-buildbucket.cfg b/infra/config/global/cr-buildbucket.cfg deleted file mode 100644 index e3c4a55f86..0000000000 --- a/infra/config/global/cr-buildbucket.cfg +++ /dev/null @@ -1,382 +0,0 @@ -# Defines buckets on cr-buildbucket.appspot.com, used to schedule builds -# on buildbot. In particular, CQ uses some of these buckets to schedule tryjobs. -# -# See http://luci-config.appspot.com/schemas/projects:cr-buildbucket.cfg for -# schema of this file and documentation. -# -# Please keep this list sorted by bucket name. - -acl_sets { - name: "ci" - acls { - role: READER - group: "all" - } - acls { - role: SCHEDULER - identity: "luci-scheduler@appspot.gserviceaccount.com" - } -} - -acl_sets { - name: "try" - acls { - role: READER - group: "all" - } - acls { - role: SCHEDULER - group: "project-dawn-tryjob-access" - } - acls { - role: SCHEDULER - group: "service-account-cq" - } -} - -builder_mixins { - name: "clang" - recipe { - properties_j: "clang:true" - } -} -builder_mixins { - name: "no_clang" - recipe { - properties_j: "clang:false" - } -} -builder_mixins { - name: "release" - recipe { - properties_j: "debug:false" - } -} -builder_mixins { - name: "debug" - recipe { - properties_j: "debug:true" - } -} -builder_mixins { - name: "x86" - recipe { - properties: "target_cpu:x86" - } -} -builder_mixins { - name: "x64" - recipe { - properties: "target_cpu:x64" - } -} -builder_mixins { - name: "linux", - dimensions: "os:Ubuntu-18.04" - recipe { - properties_j: <