Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/premerge_advisor_explain.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def main(

# Skip looking for results on AArch64 for now because the premerge advisor
# service is not available on AWS currently.
if platform.machine() == "arm64":
if platform.machine() == "arm64" or platform.machine() == "aarch64":
sys.exit(0)

main(
Expand Down
2 changes: 1 addition & 1 deletion .ci/premerge_advisor_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def main(commit_sha, workflow_run_number, build_log_files):

# Skip uploading results on AArch64 for now because the premerge advisor
# service is not available on AWS currently.
if platform.machine() == "arm64":
if platform.machine() == "arm64" or platform.machine() == "aarch64":
sys.exit(0)

main(args.commit_sha, args.workflow_run_number, args.build_log_files)