Skip to content

Commit

Permalink
fix cuda not installable
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Nov 12, 2024
1 parent 7ddb16f commit 9b92b97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ jobs:
- name: (ubuntu) install CUDA
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: |
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.0-1_all.deb
sudo dpkg -i cuda-keyring_1.0-1_all.deb
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb
sudo dpkg -i cuda-keyring_1.1-1_all.deb
sudo apt -y update
sudo apt -y install cuda --no-install-recommends
sudo apt -y install cuda-nvcc-12-6 --no-install-recommends
echo PATH=${PATH}:/usr/local/cuda/bin >> $GITHUB_ENV
- name: (ubuntu) CUDA smoke tests
Expand Down

0 comments on commit 9b92b97

Please sign in to comment.