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 <rharrison@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Auto-Submit: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
Ryan Harrison 2021-06-07 16:27:43 +00:00 committed by Dawn LUCI CQ
parent 08a18771c1
commit 6fb11ffa40
6 changed files with 0 additions and 772 deletions

View File

@ -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
>
>
>
>

View File

@ -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: <<EOF
$build/goma: {
"enable_ats": true,
"rpc_extra_params": "?prod",
"server_host": "goma.chromium.org"
}
EOF
}
}
builder_mixins {
name: "windows",
dimensions: "os:Windows-10"
caches {
path: "win_toolchain"
name: "win_toolchain"
}
recipe {
properties_j: <<EOF
$build/goma: {
"enable_ats": true,
"rpc_extra_params": "?prod",
"server_host": "goma.chromium.org"
}
EOF
}
}
builder_mixins {
name: "mac"
dimensions: "os:Mac-10.15"
caches: { # cache for depot_tools.osx_sdk recipe module
name: "osx_sdk"
path: "osx_sdk"
}
recipe {
properties_j: <<EOF
$build/goma: {
"rpc_extra_params": "?prod",
"server_host": "goma.chromium.org"
}
EOF
}
}
builder_mixins {
name: "gen_fuzz_corpus"
recipe {
properties_j: "gen_fuzz_corpus:true"
}
}
buckets {
name: "luci.dawn.ci"
acl_sets: "ci"
swarming {
hostname: "chromium-swarm.appspot.com"
builder_defaults {
dimensions: "pool:luci.flex.ci"
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
dimensions: "cpu:x86-64"
recipe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
cipd_version: "refs/heads/master"
name: "dawn"
}
service_account: "dawn-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
}
# Linux: test combinations of {clang}x{release,debug}x{x86,x64}
builders {
name: "linux-clang-dbg-x64"
mixins: "linux"
mixins: "clang"
mixins: "debug"
mixins: "x64"
}
builders {
name: "linux-clang-dbg-x86"
mixins: "linux"
mixins: "clang"
mixins: "debug"
mixins: "x86"
}
builders {
name: "linux-clang-rel-x64"
mixins: "linux"
mixins: "clang"
mixins: "release"
mixins: "x64"
}
builders {
name: "linux-clang-rel-x86"
mixins: "linux"
mixins: "clang"
mixins: "release"
mixins: "x86"
}
# Mac: unlike Linux we only need to test x64 (and only clang too)
builders {
name: "mac-dbg"
mixins: "mac"
mixins: "clang"
mixins: "debug"
mixins: "x64"
}
builders {
name: "mac-rel"
mixins: "mac"
mixins: "clang"
mixins: "release"
mixins: "x64"
}
# Windows: test combinations of {clang,msvc}x{release,debug}x{x86,x64}
# but limit msvc to x64
builders {
name: "win-clang-dbg-x64"
mixins: "windows"
mixins: "clang"
mixins: "debug"
mixins: "x64"
}
builders {
name: "win-clang-dbg-x86"
mixins: "windows"
mixins: "clang"
mixins: "debug"
mixins: "x86"
}
builders {
name: "win-clang-rel-x64"
mixins: "windows"
mixins: "clang"
mixins: "release"
mixins: "x64"
}
builders {
name: "win-clang-rel-x86"
mixins: "windows"
mixins: "clang"
mixins: "release"
mixins: "x86"
}
# GOMA doesn't support MSVC builds so we don't used the "windows" mixin and
# instead list the dimensions: "os:Windows-10" directly.
builders {
name: "win-msvc-dbg-x64"
dimensions: "os:Windows-10"
mixins: "no_clang"
mixins: "debug"
mixins: "x64"
}
builders {
name: "win-msvc-rel-x64"
dimensions: "os:Windows-10"
mixins: "no_clang"
mixins: "release"
mixins: "x64"
}
builders {
name: "cron-linux-clang-rel-x64"
mixins: "linux"
mixins: "clang"
mixins: "release"
mixins: "x64"
mixins: "gen_fuzz_corpus"
}
}
}
buckets: {
name: "luci.dawn.try"
acl_sets: "try"
swarming {
hostname: "chromium-swarm.appspot.com"
builder_defaults {
dimensions: "pool:luci.flex.try"
# We have 32bit test configurations but some of our toolchain is 64bit (like CIPD)
dimensions: "cpu:x86-64"
recipe {
cipd_package: "infra/recipe_bundles/chromium.googlesource.com/chromium/tools/build"
cipd_version: "refs/heads/master"
name: "dawn"
properties_j: "$depot_tools/bot_update:{\"apply_patch_on_gclient\":true}"
}
service_account: "dawn-try-builder@chops-service-accounts.iam.gserviceaccount.com"
}
builders {
name: "presubmit"
dimensions: "os:Ubuntu-18.04"
recipe {
name: "run_presubmit"
properties: "repo_name:dawn"
properties_j: "runhooks:true"
}
}
# A subset of the CI configurations are used for the CQ. We still mirror
# the CI builders here so we can trigger tryjobs on their specific
# configuration.
# CI Mirror only
builders {
name: "linux-clang-dbg-x64"
mixins: "linux"
mixins: "clang"
mixins: "debug"
mixins: "x64"
}
# Actually on the CQ
builders {
name: "linux-clang-dbg-x86"
mixins: "linux"
mixins: "clang"
mixins: "debug"
mixins: "x86"
}
# Actually on the CQ
builders {
name: "linux-clang-rel-x64"
mixins: "linux"
mixins: "clang"
mixins: "release"
mixins: "x64"
}
# Actually on the CQ
builders {
name: "linux-clang-rel-x86"
mixins: "linux"
mixins: "clang"
mixins: "release"
mixins: "x86"
}
# Actually on the CQ
builders {
name: "mac-dbg"
mixins: "clang"
mixins: "mac"
mixins: "debug"
mixins: "x64"
}
# Actually on the CQ
builders {
name: "mac-rel"
mixins: "clang"
mixins: "mac"
mixins: "release"
mixins: "x64"
}
# Actually on the CQ
builders {
name: "win-clang-dbg-x64"
mixins: "windows"
mixins: "clang"
mixins: "debug"
mixins: "x64"
}
# Actually on the CQ
builders {
name: "win-clang-dbg-x86"
mixins: "windows"
mixins: "clang"
mixins: "debug"
mixins: "x86"
}
# Actually on the CQ
builders {
name: "win-clang-rel-x64"
mixins: "windows"
mixins: "clang"
mixins: "release"
mixins: "x64"
}
# CI Mirror only
builders {
name: "win-clang-rel-x86"
mixins: "windows"
mixins: "clang"
mixins: "release"
mixins: "x86"
}
# GOMA doesn't support MSVC builds so we don't used the "windows" mixin and
# instead list the dimensions: "os:Windows-10" directly.
builders {
name: "win-msvc-dbg-x64"
dimensions: "os:Windows-10"
mixins: "no_clang"
mixins: "debug"
mixins: "x64"
}
builders {
name: "win-msvc-rel-x64"
dimensions: "os:Windows-10"
mixins: "no_clang"
mixins: "release"
mixins: "x64"
}
}
}

View File

@ -1,17 +0,0 @@
# Copyright (c) 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# For the schema of this file and documentation, see ProjectConfig message in
# https://luci-config.appspot.com/schemas/services/luci-logdog:logdog.cfg
# Auth groups who can read log streams.
reader_auth_groups: "all"
# Auth groups who can register and emit new log streams.
writer_auth_groups: "luci-logdog-chromium-writers"
# The base Google Storage archival path for this project.
#
# Archived LogDog logs will be written to this bucket/path.
archive_gs_bucket: "chromium-luci-logdog"

View File

@ -1,127 +0,0 @@
logo_url: "https://storage.googleapis.com/chrome-infra-public/logo/dawn-logo.png"
consoles {
id: "ci"
name: "Dawn CI Builders"
repo_url: "https://dawn.googlesource.com/dawn"
refs: "refs/heads/main"
manifest_name: "REVISION"
builders {
name: "buildbucket/luci.dawn.ci/linux-clang-dbg-x64"
category: "linux|clang|dbg"
short_name: "x64"
}
builders {
name: "buildbucket/luci.dawn.ci/linux-clang-dbg-x86"
category: "linux|clang|dbg"
short_name: "x86"
}
builders {
name: "buildbucket/luci.dawn.ci/linux-clang-rel-x64"
category: "linux|clang|rel"
short_name: "x64"
}
builders {
name: "buildbucket/luci.dawn.ci/linux-clang-rel-x86"
category: "linux|clang|rel"
short_name: "x86"
}
builders {
name: "buildbucket/luci.dawn.ci/mac-dbg"
category: "mac"
short_name: "dbg"
}
builders {
name: "buildbucket/luci.dawn.ci/mac-rel"
category: "mac"
short_name: "rel"
}
builders {
name: "buildbucket/luci.dawn.ci/win-clang-dbg-x64"
category: "win|clang|dbg"
short_name: "x64"
}
builders {
name: "buildbucket/luci.dawn.ci/win-clang-dbg-x86"
category: "win|clang|dbg"
short_name: "x86"
}
builders {
name: "buildbucket/luci.dawn.ci/win-clang-rel-x64"
category: "win|clang|rel"
short_name: "x64"
}
builders {
name: "buildbucket/luci.dawn.ci/win-clang-rel-x86"
category: "win|clang|rel"
short_name: "x86"
}
builders {
name: "buildbucket/luci.dawn.ci/win-msvc-dbg-x64"
category: "win|msvc"
short_name: "dbg"
}
builders {
name: "buildbucket/luci.dawn.ci/win-msvc-rel-x64"
category: "win|msvc"
short_name: "rel"
}
builders {
name: "buildbucket/luci.dawn.ci/cron-linux-clang-rel-x64"
category: "cron|linux|clang|rel"
short_name: "x64"
}
}
consoles {
id: "try"
name: "Dawn try Builders"
manifest_name: "PATCHED"
builder_view_only: true
builders {
name: "buildbucket/luci.dawn.try/presubmit"
}
builders {
name: "buildbucket/luci.dawn.try/linux-clang-dbg-x64"
}
builders {
name: "buildbucket/luci.dawn.try/linux-clang-dbg-x86"
}
builders {
name: "buildbucket/luci.dawn.try/linux-clang-rel-x64"
}
builders {
name: "buildbucket/luci.dawn.try/linux-clang-rel-x86"
}
builders {
name: "buildbucket/luci.dawn.try/mac-dbg"
}
builders {
name: "buildbucket/luci.dawn.try/mac-rel"
}
builders {
name: "buildbucket/luci.dawn.try/win-clang-dbg-x64"
}
builders {
name: "buildbucket/luci.dawn.try/win-clang-dbg-x86"
}
builders {
name: "buildbucket/luci.dawn.try/win-clang-rel-x64"
}
builders {
name: "buildbucket/luci.dawn.try/win-clang-rel-x86"
}
builders {
name: "buildbucket/luci.dawn.try/win-msvc-dbg-x64"
}
builders {
name: "buildbucket/luci.dawn.try/win-msvc-rel-x64"
}
}

View File

@ -1,161 +0,0 @@
# Defines jobs on luci-scheduler.appspot.com.
#
# For schema of this file and documentation see ProjectConfig message in
#
# https://chromium.googlesource.com/infra/luci/luci-go/+/master/scheduler/appengine/messages/cron.proto
acl_sets {
name: "default"
acls {
role: READER
granted_to: "group:all"
}
acls {
role: OWNER
granted_to: "group:project-dawn-admins"
}
}
trigger {
id: "primary-poller"
acl_sets: "default"
gitiles {
repo: "https://dawn.googlesource.com/dawn.git"
refs: "refs/heads/main"
}
triggers: "linux-clang-dbg-x64"
triggers: "linux-clang-rel-x64"
triggers: "linux-clang-dbg-x86"
triggers: "linux-clang-rel-x86"
triggers: "mac-dbg"
triggers: "mac-rel"
triggers: "win-clang-dbg-x64"
triggers: "win-clang-rel-x64"
triggers: "win-clang-dbg-x86"
triggers: "win-clang-rel-x86"
triggers: "win-msvc-dbg-x64"
triggers: "win-msvc-rel-x64"
}
job {
id: "linux-clang-dbg-x64"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "linux-clang-dbg-x64"
}
}
job {
id: "linux-clang-dbg-x86"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "linux-clang-dbg-x86"
}
}
job {
id: "linux-clang-rel-x64"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "linux-clang-rel-x64"
}
}
job {
id: "linux-clang-rel-x86"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "linux-clang-rel-x86"
}
}
job {
id: "mac-dbg"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "mac-dbg"
}
}
job {
id: "mac-rel"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "mac-rel"
}
}
job {
id: "win-clang-dbg-x64"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "win-clang-dbg-x64"
}
}
job {
id: "win-clang-dbg-x86"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "win-clang-dbg-x86"
}
}
job {
id: "win-clang-rel-x64"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "win-clang-rel-x64"
}
}
job {
id: "win-clang-rel-x86"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "win-clang-rel-x86"
}
}
job {
id: "win-msvc-dbg-x64"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "win-msvc-dbg-x64"
}
}
job {
id: "win-msvc-rel-x64"
acl_sets: "default"
buildbucket: {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "win-msvc-rel-x64"
}
}
job {
id: "cron-linux-clang-rel-x64"
schedule: "0 0 0 * * * *"
acl_sets: "default"
buildbucket {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "cron-linux-clang-rel-x64"
}
}

View File

@ -1,4 +0,0 @@
# For the schema of this file and documentation, see ProjectCfg message in
# https://luci-config.appspot.com/schemas/projects:project.cfg
name: "dawn"
access: "group:all" # The project is public, everybody can see build results.