Run gpu tests if relevant files are changed #35
Workflow file for this run
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
name: GPU tests | |
on: | |
push: | |
branches: ["pull-request/[0-9]+"] | |
# NOTE: paths cannot be used since push happens to copied PR and only latest commit to PR is used | |
# Cancel previous runs if new commit is pushed to the same PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.sha }} | |
cancel-in-progress: true | |
jobs: | |
wait-dco: | |
uses: ./.github/workflows/_wait_for_checks.yml | |
permissions: | |
checks: read | |
secrets: inherit | |
with: | |
match_pattern: '^DCO$' | |
wait-unit-tests: | |
needs: [wait-dco] | |
uses: ./.github/workflows/_wait_for_checks.yml | |
permissions: | |
checks: read | |
secrets: inherit | |
with: | |
match_pattern: '^linux$' # Unit tests / linux | |
delay: 60s | |
gpu-tests: | |
needs: [wait-unit-tests] | |
# Runner list at https://github.com/nv-gha-runners/enterprise-runner-configuration/blob/main/docs/runner-groups.md | |
runs-on: linux-amd64-gpu-h100-latest-1 | |
timeout-minutes: 60 | |
container: | |
image: nvcr.io/nvidia/pytorch:25.06-py3 | |
env: | |
GIT_DEPTH: 1000 # For correct version for tests/gpu/torch/quantization/plugins/test_megatron.py | |
LD_LIBRARY_PATH: "/usr/lib/x86_64-linux-gnu:${LD_LIBRARY_PATH}" # Add libcudnn*.so and libnv*.so to path. | |
PIP_CONSTRAINT: "" # Disable pip constraint for upgrading packages | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nv-gha-runners/setup-proxy-cache@main | |
# Check if relevant files are changed in PR else skip gpu tests | |
- id: get-pr-info | |
uses: nv-gha-runners/get-pr-info@main | |
- name: Check for changes in test-relevant directories | |
id: changed-tests | |
uses: step-security/[email protected] | |
with: | |
files: | | |
.github/workflows/gpu_tests.yml | |
modelopt/** | |
tests/gpu/** | |
tox.ini | |
pyproject.toml | |
setup.py | |
base_sha: ${{ fromJSON(steps.get-pr-info.outputs.pr-info).base.ref }} | |
- name: Run gpu tests | |
if: steps.changed-tests.outputs.any_changed == 'true' | |
run: pip install tox-current-env && tox -e py312-cuda12-gpu --current-env |