Skip to content

Commit 545b77d

Browse files
authored
Remove training CIs from external PR CI list. (microsoft#23425)
### Description <!-- Describe your changes. --> 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. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Remove invalid CIs from list
1 parent c95d828 commit 545b77d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tools/python/run_CIs_for_external_pr.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ def get_pipeline_names():
3535
"Linux QNN CI Pipeline",
3636
# mac
3737
"MacOS CI Pipeline",
38-
# training
39-
"orttraining-linux-ci-pipeline",
40-
"orttraining-linux-gpu-ci-pipeline",
4138
# checks
4239
"onnxruntime-binary-size-checks-ci-pipeline",
4340
# big models
@@ -79,7 +76,8 @@ def run_gh_pr_command(command: list[str], check: bool = True):
7976
except subprocess.CalledProcessError as cpe:
8077
print(cpe)
8178
print(cpe.stderr)
82-
sys.exit(-1)
79+
# Exit if debugging. Otherwise keep going as it's most likely an intermittent failure.
80+
# sys.exit(-1)
8381

8482

8583
def main():

0 commit comments

Comments
 (0)