Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove training CIs from external PR CI list. #23425

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading