[CI] Make AArch64 Premerge Job Fail on Errors (#188801)

Right now we report the errors, but the job does not actually fail. This
patch fixes that.
This commit is contained in:
Aiden Grossman
2026-03-27 13:32:15 -07:00
committed by GitHub
parent 502b5e0bea
commit 560b8c9afd

View File

@@ -143,7 +143,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" or platform.machine() == "aarch64":
sys.exit(0)
sys.exit(args.return_code)
failures_explained = main(
args.commit_sha,