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
16 changes: 8 additions & 8 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ on:

env:
ref: ${{ github.event.inputs.ref || github.ref }}
CUDA_VERSION: 128
UV_TORCH_BACKEND: cu128
TORCH_VERSION: 2.8.0
PYTHON_VERSION: 3.12 # use 312, no need to recompile libs like flash_attn...
UV_PYTHON: python3.12
CUDA_VERSION: 130
UV_TORCH_BACKEND: cu130
TORCH_VERSION: 2.11.0
PYTHON_VERSION: 3.14
UV_PYTHON: python3.14

concurrency:
group: ${{ github.ref }}-workflow-unit-tests
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- list-test-files
runs-on: [ self-hosted, xeon5 ]
container:
image: 10.0.13.31:5000/nvidia/cuda:128-ubuntu22.04_0206
image: 10.0.13.31:5000/nvidia/cuda:128-ubuntu24.04_0325
options: --device /dev/dri --ipc=host --runtime=nvidia --gpus all
volumes:
- /monster/ci/env/entrypoint.sh:/entrypoint.sh
Expand Down Expand Up @@ -151,9 +151,9 @@ jobs:

- name: Install
run: |
pip install pip pytest regex setuptools build wheel -U
uv pip install pip pytest regex setuptools build wheel -U
uv pip install -r requirements.txt
pip install -v .
uv pip install -v .

- name: Test ${{ matrix.test_script }}
run: |
Expand Down
Loading