ci: add network diagnostics for test artifact downloads - #4795
Merged
gyohuangxin merged 1 commit intoAug 18, 2026
Conversation
Contributor
🏷️ CI GuideRuns automatically on every PR:
Extended tests (opt-in via labels):
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds CI-side network diagnostics to help troubleshoot intermittent Aiter wheel download failures on linux-aiter-mi35x-1 runners, without changing the overall job outcome semantics (diagnostic steps are continue-on-error).
Changes:
- Adds a network preflight step (runner info, DNS checks, and
curl -wtiming) before Aiter wheel cache/artifact restore/download onlinux-aiter-mi35x-1. - Adds a post-failure
speedtest-clistep intended to run only after the Aiter wheel artifact download retry fails (and only onlinux-aiter-mi35x-1).
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+591
to
+593
| - name: Speedtest after Aiter wheel download failure | ||
| if: ${{ failure() && matrix.runner == 'linux-aiter-mi35x-1' && steps.restore_aiter_wheel.outputs.cache-hit != 'true' && (steps.download_aiter_wheel.outcome == 'failure' || steps.retry_aiter_wheel.outcome == 'failure') }} | ||
| continue-on-error: true |
Comment on lines
+605
to
+606
| python3 -m pip install --user --disable-pip-version-check speedtest-cli || true | ||
| timeout 120 "$HOME/.local/bin/speedtest-cli" --simple --secure || true |
gyohuangxin
force-pushed
the
ci/aiter-wheel-network-diagnostics
branch
from
August 17, 2026 07:42
34df926 to
9b5580d
Compare
gyohuangxin
force-pushed
the
ci/aiter-wheel-network-diagnostics
branch
2 times, most recently
from
August 17, 2026 07:51
c817887 to
3a1bd56
Compare
gyohuangxin
force-pushed
the
ci/aiter-wheel-network-diagnostics
branch
from
August 17, 2026 08:54
3a1bd56 to
90d660f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
curl -wtiming for GitHub and Azure Blob endpoints.speedtest-cliafter relevant artifact download failures, withcontinue-on-errorso diagnostics do not change CI semantics.Validation
python3 -c "import yaml, pathlib; [yaml.safe_load(pathlib.Path(p).read_text()) for p in [\".github/workflows/aiter-test.yaml\", \".github/workflows/triton-test.yaml\"]]"git diff --check