We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff508ae commit c641e61Copy full SHA for c641e61
.github/workflows/bazel-checks.yml
@@ -33,7 +33,11 @@ jobs:
33
34
bazel-build:
35
name: "Bazel Build/Test"
36
- runs-on: llvm-premerge-linux-runners
+ # Only run on US Central workers so we only have to keep one cache warm as
37
+ # the cache buckets are per cluster.
38
+ runs-on:
39
+ group: llvm-premerge-cluster-us-central
40
+ labels: llvm-premerge-linux-runners
41
if: github.repository == 'llvm/llvm-project'
42
steps:
43
- name: Fetch LLVM sources
@@ -54,4 +58,4 @@ jobs:
54
58
bazelisk test --config=ci --sandbox_base="" \
55
59
--remote_cache=https://storage.googleapis.com/$CACHE_GCS_BUCKET-bazel \
56
60
--google_default_credentials \
57
- @llvm-project//...
61
+ @llvm-project//... //...
0 commit comments