Skip to content

CI: Debug Aiter test issue#1482

Merged
gyohuangxin merged 2 commits intomainfrom
gyohuangxin-patch-7
Nov 26, 2025
Merged

CI: Debug Aiter test issue#1482
gyohuangxin merged 2 commits intomainfrom
gyohuangxin-patch-7

Conversation

@gyohuangxin
Copy link
Member

No description provided.

@gyohuangxin gyohuangxin marked this pull request as ready for review November 26, 2025 12:26
Copilot AI review requested due to automatic review settings November 26, 2025 12:26
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR aims to debug an issue with the Aiter tests by adding the MAX_JOBS=20 environment variable to limit parallel compilation jobs during test execution.

Key Changes:

  • Modified the standard test job to set MAX_JOBS=20 when running aiter_test.sh
  • Changed the execution from direct script invocation to using bash -c wrapper

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

-w /workspace \
aiter_test \
./.github/scripts/aiter_test.sh
bash -c "MAX_JOBS=20 ./.github/scripts/aiter_test.sh"
Copy link

Copilot AI Nov 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The MAX_JOBS=20 environment variable is set for the standard tests but not for the multi-gpu tests (line 212). This creates an inconsistency where the two test jobs may behave differently during compilation.

Consider either:

  1. Adding MAX_JOBS=20 to the multi-gpu job as well for consistency, or
  2. Using the same syntax pattern (docker exec -e MAX_JOBS=20) in both jobs

Additionally, note that the multi-gpu job uses docker exec -e MULTIGPU=TRUE (line 209) which is a more standard way to pass environment variables to docker exec, while this change uses bash -c "MAX_JOBS=20 ..." which sets it within the bash command. The -e flag approach would be clearer and more consistent.

Copilot uses AI. Check for mistakes.
@gyohuangxin gyohuangxin merged commit 43b924a into main Nov 26, 2025
7 checks passed
@gyohuangxin gyohuangxin deleted the gyohuangxin-patch-7 branch November 26, 2025 12:32
nsusanto pushed a commit that referenced this pull request Dec 4, 2025
* CI: Set MAX_JOBS=20 when running aiter tests

* Update aiter-test.yaml
zhuyuhua-v pushed a commit that referenced this pull request Dec 17, 2025
* CI: Set MAX_JOBS=20 when running aiter tests

* Update aiter-test.yaml
valarLip pushed a commit that referenced this pull request Mar 18, 2026
* CI: Set MAX_JOBS=20 when running aiter tests

* Update aiter-test.yaml
valarLip pushed a commit that referenced this pull request Mar 18, 2026
* CI: Set MAX_JOBS=20 when running aiter tests

* Update aiter-test.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants