Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .github/workflows/requirements_cuda_ci.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
numpy==2.2.5
torch==2.7.0 --index-url https://download.pytorch.org/whl/cu128
pytest==8.3.5
ninja==1.11.1.4
ruff==0.11.11
pre-commit==4.2.0
ninja==1.11.1.4
8 changes: 4 additions & 4 deletions .github/workflows/verify_extension_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ permissions:
jobs:
verify_cuda_extension:
if: ${{ github.event.label.name == 'ci-ready' || github.event_name != 'pull_request' }}
runs-on: ubuntu-latest

runs-on: ubuntu-24.04

container:
image: nvcr.io/nvidia/cuda:12.9.0-devel-ubuntu24.04 # Pre installed CUDA toolkit
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand All @@ -26,8 +28,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt install nvidia-cuda-toolkit
pip install -r .github/workflows/requirements_cuda_ci.txt
pip install -e .

Expand Down
Loading