Skip to content

Commit a505621

Browse files
authored
bazel: Bump version -> 7.4.0 (#37864)
the current bazel version is flakey and is triggering at least one build issue for downstreams the only reason we are using it is due to broken env vars in later versions that fails our mobile/coverage ci this PR bumps the version to 7.x latest and worksaround the mobile/coverage issue by injecting the known working bazel version for that ci alone Fix #37857 Fix #37852 Signed-off-by: Ryan Northey <[email protected]>
1 parent 47231ff commit a505621

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.2
1+
7.4.0

.github/workflows/mobile-coverage.yml

+7
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@ jobs:
5858
run: |
5959
cd mobile
6060
tar -czf coverage.tar.gz generated/coverage
61+
# TODO(phlax): This is a highly undesirable workaround - remove once
62+
# https://github.com/bazelbuild/bazel/issues/23247 is resolved/available
63+
steps-pre: |
64+
- name: Inject bazel version
65+
shell: bash
66+
run: |
67+
echo "7.1.2" > .bazelversion
6168
target: mobile-coverage
6269
timeout-minutes: 120
6370
upload-name: coverage.tar.gz

0 commit comments

Comments
 (0)