Commit 18e100d3 authored by Pierce Freeman's avatar Pierce Freeman
Browse files

Release is actually unsupported

parent 061470ae
#!/bin/bash #!/bin/bash
echo $OS_VERSION
# Strip the periods from the version number # 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} OS=ubuntu${OS_VERSION}
wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin
......
#!/bin/bash #!/bin/bash
echo $OS_VERSION
# Strip the periods from the version number # 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} OS=ubuntu${OS_VERSION}
wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin
......
#!/bin/bash #!/bin/bash
echo $OS_VERSION
# Strip the periods from the version number # 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} OS=ubuntu${OS_VERSION}
wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin wget -nv https://developer.download.nvidia.com/compute/cuda/repos/${OS}/x86_64/cuda-${OS}.pin
......
...@@ -68,8 +68,6 @@ jobs: ...@@ -68,8 +68,6 @@ jobs:
- name: Install CUDA ${{ matrix.cuda-version }} - name: Install CUDA ${{ matrix.cuda-version }}
if: ${{ matrix.cuda-version != 'cpu' }} if: ${{ matrix.cuda-version != 'cpu' }}
env:
OS_VERSION: ${{ runner.release }}
run: | run: |
bash .github/workflows/cuda/cu${{ matrix.cuda-version }}-${{ runner.os }}.sh bash .github/workflows/cuda/cu${{ matrix.cuda-version }}-${{ runner.os }}.sh
shell: shell:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment