Skip to content

Commit ad9975e

Browse files
[CI] Skip Running Prmeerge Advisor on AArch64
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 6f5c8fe commit ad9975e

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
@@ -147,7 +147,7 @@ def main(
147147

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

153153
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)