Skip to content

Commit

Permalink
Remove training CIs from external PR CI list.
Browse files Browse the repository at this point in the history
Don't exit if there's an error starting a CI. It's most likely an intermittent error (or invalid CI) so it's better to keep going so you only have to try and kick off the failed CI later.
  • Loading branch information
skottmckay committed Jan 18, 2025
1 parent a05203b commit 21d1bd8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tools/python/run_CIs_for_external_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ def get_pipeline_names():
"Linux QNN CI Pipeline",
# mac
"MacOS CI Pipeline",
# training
"orttraining-linux-ci-pipeline",
"orttraining-linux-gpu-ci-pipeline",
# checks
"onnxruntime-binary-size-checks-ci-pipeline",
# big models
Expand Down Expand Up @@ -78,7 +75,8 @@ def run_gh_pr_command(command: list[str], check: bool = True):
except subprocess.CalledProcessError as cpe:
print(cpe)
print(cpe.stderr)
sys.exit(-1)
# Exit if debugging. Otherwise keep going as it's most likely an intermittent failure.
# sys.exit(-1)


def main():
Expand Down

0 comments on commit 21d1bd8

Please sign in to comment.