Skip to content

Commit 8cedbdb

Browse files
authored
Fix Ubuntu ARM64 link error in the regular org. (#2356)
This is a temporary fix that unblocks the downstream pipeline for commits older than bazelbuild/bazel@97b7a5a Example failure: https://buildkite.com/bazel/bazel-at-head-plus-downstream/builds/4849#0198744c-7548-41b5-bb20-deb8ce6ead51 Progress towards #2353
1 parent c4dabf7 commit 8cedbdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildkite/bazelci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ def calculate_flags(task_config, task_config_key, action_key, tmpdir, test_env_v
11201120
# Eventually we should set the flags in build_bazel_binaries.yml in the Bazel repo.
11211121
# However, for now we need to hack bazelci.py so that we can rebuild binaries
11221122
# at older commits.
1123-
if THIS_IS_TRUSTED and is_linux() and is_64_bit():
1123+
if is_linux() and is_64_bit():
11241124
flags += ["--linkopt=-Wl,--no-fix-cortex-a53-843419", "--host_linkopt=-Wl,--no-fix-cortex-a53-843419"]
11251125

11261126
return flags, json_profile_out, capture_corrupted_outputs_dir

0 commit comments

Comments
 (0)