Skip to content

Commit 6e1cfd0

Browse files
authored
Fix LINUX_BINARY_PLATFORM checking (#2293)
Also check for "aarch64"
1 parent fa5a29f commit 6e1cfd0

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
@@ -474,7 +474,7 @@
474474
# In order to test that "the one Linux binary" that we build for our official releases actually
475475
# works on all Linux distributions that we test on, we use the Linux binary built on our official
476476
# release platform for all Linux downstream tests.
477-
LINUX_BINARY_PLATFORM = "rockylinux8_arm64" if platform_module.machine() == "arm64" else "rockylinux8"
477+
LINUX_BINARY_PLATFORM = "rockylinux8_arm64" if platform_module.machine() in ["arm64", "aarch64"] else "rockylinux8"
478478

479479
XCODE_VERSION_REGEX = re.compile(r"^\d+\.\d+(\.\d+)?$")
480480
XCODE_VERSION_OVERRIDES = {"10.2.1": "10.3", "11.2": "11.2.1", "11.3": "11.3.1"}

0 commit comments

Comments
 (0)