Release is actually unsupported

This commit is contained in:
Pierce Freeman 2023-06-02 19:01:44 -07:00
parent 061470ae58
commit 18e100d312
4 changed files with 3 additions and 11 deletions

View File

@ -1,9 +1,7 @@
#!/bin/bash
echo $OS_VERSION
# Strip the periods from the version number
OS_VERSION=$(echo $OS_VERSION | tr -d .)
OS_VERSION=$(echo $(lsb_release -sr) | tr -d .)
OS=ubuntu${OS_VERSION}
wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin

View File

@ -1,9 +1,7 @@
#!/bin/bash
echo $OS_VERSION
# Strip the periods from the version number
OS_VERSION=$(echo $OS_VERSION | tr -d .)
OS_VERSION=$(echo $(lsb_release -sr) | tr -d .)
OS=ubuntu${OS_VERSION}
wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin

View File

@ -1,9 +1,7 @@
#!/bin/bash
echo $OS_VERSION
# Strip the periods from the version number
OS_VERSION=$(echo $OS_VERSION | tr -d .)
OS_VERSION=$(echo $(lsb_release -sr) | tr -d .)
OS=ubuntu${OS_VERSION}
wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin

View File

@ -68,8 +68,6 @@ jobs:
- name: Install CUDA ${{ matrix.cuda-version }}
if: ${{ matrix.cuda-version != 'cpu' }}
env:
OS_VERSION: ${{ runner.release }}
run: |
bash .github/workflows/cuda/cu${{ matrix.cuda-version }}-${{ runner.os }}.sh
shell: