Skip to content

Commit 8bdd82c

Browse files
[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.
1 parent 5407e62 commit 8bdd82c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/premerge_advisor_explain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def main(
148148

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

154154
main(

.ci/premerge_advisor_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def main(commit_sha, workflow_run_number, build_log_files):
5959

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

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

0 commit comments

Comments
 (0)