Skip to content

Commit 9a6ec00

Browse files
authored
Force USE_BAZEL_VERSION to working SHA until last_green is fixed (#3029)
There are at least two issues causing CI to be 🔴 atm: 1. [See example](https://mnf.buildbuddy.io/invocation/92c4f0ed-72f3-4cf7-a941-43ae28448acb?target=%2F%2FLib%3Agen_Lib.swift&targetStatus=3#@1). Repro: ```sh cd examples/integration bazel clean && USE_BAZEL_VERSION=last_green bazel build //Lib:gen_Lib.swift ``` 2. [See example](https://mnf.buildbuddy.io/invocation/f51fedc6-8204-4707-8954-a1ea1f40bf35#@191). Repro: ```sh # From root bazel clean && USE_BAZEL_VERSION=last_green bazel build //test/internal/bazel_labels:normalize_tests_test_2 ``` I confirmed that bazelbuild/bazel@dd2464a is the last commit that does not hit the issues above. Commit bazelbuild/bazel@3fddc7f is the first one that repros the above (i.e. you'll also hit the issues above if you replace `last_green` with this SHA). So proposing we force CI to run on bazelbuild/bazel@dd2464a for now until the issue is fixed upstream. Thoughts? --------- Signed-off-by: Thiago Cruz <thiago@squareup.com>
1 parent 6221b25 commit 9a6ec00

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

buildbuddy.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ x_templates:
2323
USE_BAZEL_VERSION: 7.x
2424
- &bazel_head
2525
env:
26-
USE_BAZEL_VERSION: last_green
26+
# See https://github.com/MobileNativeFoundation/rules_xcodeproj/pull/3029
27+
#
28+
# Temporary change to make CI pass until the fix is in `last_green`
29+
USE_BAZEL_VERSION: dd2464a5933e0a5a6765024573832717b71989bf
2730

2831
- &normal_resources
2932
resource_requests: { memory: 6GB }

0 commit comments

Comments
 (0)