-
Notifications
You must be signed in to change notification settings - Fork 253
CI: Move some tests to MI355 due to the network issue of TW cluster #1446
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,16 +42,16 @@ jobs: | |||||
| pr_title="${{ github.event.pull_request.title }}" | ||||||
| if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then | ||||||
| echo "It's main branch, running tests on MI325 and MI35X..." | ||||||
| echo 'standard_runners=["aiter-1gpu-runner","aiter-mi355-1gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'multigpu_runners=["aiter-8gpu-runner","aiter-mi355-8gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'standard_runners=["aiter-mi355-1gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'multigpu_runners=["aiter-mi355-8gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| elif echo "$pr_title" | grep -qi "mi35x"; then | ||||||
| echo "PR title contains 'MI35X', running tests on MI325 and MI35X..." | ||||||
| echo 'standard_runners=["aiter-1gpu-runner"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'multigpu_runners=["aiter-8gpu-runner"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'standard_runners=["aiter-mi355-1gpu"]' >> "$GITHUB_OUTPUT" | ||||||
| echo 'multigpu_runners=["aiter-mi355-8gpu"]' >> "$GITHUB_OUTPUT" | ||||||
|
Comment on lines
48
to
+50
|
||||||
| else | ||||||
| echo "Not main branch and PR title does not contain mi35x, only running on MI325..." | ||||||
|
||||||
| echo "Not main branch and PR title does not contain mi35x, only running on MI325..." | |
| echo "Not main branch and PR title does not contain mi35x, only running on MI355..." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The echo message says 'running tests on MI325 and MI35X...' but the code only configures MI355 runners. The message should be updated to reflect that tests now run only on MI35X/MI355.