[chore] Add aarch64 wheel for vllm-router (#1781) #10
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: H100-GPU-CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'ci/**' | |
| - 'skyrl/backends/skyrl_train/**' | |
| - 'skyrl/train/**' | |
| - 'tests/backends/skyrl_train/gpu/gpu_ci/**' | |
| - 'pyproject.toml' | |
| - '!docs/**' | |
| - '!examples/**' | |
| - '.github/workflows/**' | |
| pull_request_target: | |
| types: [labeled] | |
| workflow_dispatch: | |
| permissions: | |
| checks: write # for status checks to appear | |
| contents: read | |
| jobs: | |
| skyrl_train_tests_h100: | |
| if: > | |
| github.event_name == 'push' || | |
| github.event_name == 'workflow_dispatch' || | |
| ( | |
| github.event_name == 'pull_request_target' && | |
| !github.event.pull_request.draft && | |
| contains(github.event.pull_request.labels.*.name, 'run_h100_gpu_ci') && | |
| ( | |
| github.event.pull_request.author_association == 'MEMBER' || | |
| github.event.pull_request.author_association == 'OWNER' || | |
| github.event.pull_request.author_association == 'COLLABORATOR' | |
| ) | |
| ) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: . | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| cache: 'pip' | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| activate-environment: true | |
| - name: Install basic dependencies | |
| run: uv pip install anyscale==0.24.79 typer==0.9.0 | |
| # Run h100 tests via anyscale staging (compute config llm-team-h100-4x:1) | |
| - name: GPU tests | |
| env: | |
| ANYSCALE_CLI_TOKEN: ${{ secrets.ANYSCALE_CLI_TOKEN_STAGING }} | |
| ANYSCALE_HOST: https://console.anyscale-staging.com | |
| run: | | |
| COMMIT_SHA="${{ github.event.pull_request.head.sha || github.sha }}" | |
| JOB_NAME="skyrl-train-gpu-ci-h100-${COMMIT_SHA:0:7}-${{ github.run_id }}" | |
| anyscale job submit -f ci/anyscale_gpu_ci_h100.yaml --name "$JOB_NAME" --timeout 5400 | |
| anyscale job wait --name "$JOB_NAME" --timeout 5400 |