Add cron-linux-clang-rel-x64 for running cron jobs on CI

This bot will be used to regenerate the fuzzer seed corpus
periodically.

Bug: dawn:629
Change-Id: I9036690b85cfe602188aa891a32f03923b797463
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/38321
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Austin Eng <enga@chromium.org>
This commit is contained in:
Austin Eng 2021-01-21 19:20:32 +00:00 committed by Commit Bot service account
parent 001b499275
commit 8ac8a2f5f1
3 changed files with 32 additions and 0 deletions

View File

@ -112,6 +112,12 @@ builder_mixins {
EOF EOF
} }
} }
builder_mixins {
name: "gen_fuzz_corpus"
recipe {
properties_j: "gen_fuzz_corpus:true"
}
}
buckets { buckets {
name: "luci.dawn.ci" name: "luci.dawn.ci"
@ -219,6 +225,14 @@ buckets {
mixins: "release" mixins: "release"
mixins: "x64" mixins: "x64"
} }
builders {
name: "cron-linux-clang-rel-x64"
mixins: "linux"
mixins: "release"
mixins: "x64"
mixins: "gen_fuzz_corpus"
}
} }
} }

View File

@ -68,6 +68,12 @@ consoles {
category: "win|msvc" category: "win|msvc"
short_name: "rel" short_name: "rel"
} }
builders {
name: "buildbucket/luci.dawn.ci/cron-linux-clang-rel-x64"
category: "cron|linux|clang|rel"
short_name: "x64"
}
} }
consoles { consoles {

View File

@ -148,3 +148,15 @@ job {
builder: "win-msvc-rel-x64" builder: "win-msvc-rel-x64"
} }
} }
job {
id: "cron-linux-clang-rel-x64"
realm: "ci"
schedule: "0 0 0 * * * *"
acl_sets: "default"
buildbucket {
server: "cr-buildbucket.appspot.com"
bucket: "luci.dawn.ci"
builder: "cron-linux-clang-rel-x64"
}
}