From 8bdd82ce1dd9c7da647b270b3a58eb36641e8e34 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Tue, 18 Nov 2025 10:38:39 -0800 Subject: [PATCH] [CI] Skip Running Premerge Advisor on AArch64 (#168404) They were still running because the conditional was not correct. This patch fixes that so they do not interefere with the results of the job. --- .ci/premerge_advisor_explain.py | 2 +- .ci/premerge_advisor_upload.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/premerge_advisor_explain.py b/.ci/premerge_advisor_explain.py index 269f75cace26..69568895e903 100644 --- a/.ci/premerge_advisor_explain.py +++ b/.ci/premerge_advisor_explain.py @@ -148,7 +148,7 @@ if __name__ == "__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( diff --git a/.ci/premerge_advisor_upload.py b/.ci/premerge_advisor_upload.py index 9e14743c7cc0..86032a42e179 100644 --- a/.ci/premerge_advisor_upload.py +++ b/.ci/premerge_advisor_upload.py @@ -59,7 +59,7 @@ if __name__ == "__main__": # 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)