Skip to content
Merged
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
17 changes: 16 additions & 1 deletion .github/workflows/nvidia_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,23 @@ on:
run-name: 'NVIDIA Job - ${{ github.event.inputs.run_id }}'

jobs:
select-runner:
runs-on: ubuntu-latest
outputs:
runner: ${{ steps.pick.outputs.runner }}
steps:
- id: pick
run: |
Copy link

Copilot AI Jan 14, 2026

Choose a reason for hiding this comment

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

The runner list skips gpu1, gpu3, and gpu6 without explanation. Consider adding a comment explaining why these specific GPUs are selected, or use a more consistent naming pattern if possible.

Suggested change
run: |
run: |
# Only schedule jobs on GPUs that are available for CI use.
# gpu1, gpu3, and gpu6 on b200-02 are reserved/unavailable, so they are intentionally excluded.

Copilot uses AI. Check for mistakes.
runners=("b200-02-gpu0" "b200-02-gpu1" "b200-02-gpu2" "b200-02-gpu3" "b200-02-gpu4" "b200-02-gpu5" "b200-02-gpu6" "b200-02-gpu7")
index=$(( ${{ github.run_number }} % 8 ))
echo "runner=${runners[$index]}" >> $GITHUB_OUTPUT

run:
runs-on: [nvidia-docker-b200-8-x86-64]
needs: select-runner
runs-on: ${{ needs.select-runner.outputs.runner }}
concurrency:
group: ${{ needs.select-runner.outputs.runner }}
cancel-in-progress: false
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
Expand Down
Loading