Skip to content

Commit

Permalink
removed a lot of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
rschoene committed Aug 19, 2024
1 parent 19d0bd9 commit f48e997
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: Build
on: [push, pull_request]

jobs:

build-linux:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
compiler: [g++-7, g++-8, g++-9, g++-10, clang++-8, clang++-9, clang++-10]
compiler: [g++-10]
CUDA: ['0', '8.0', '11.0', 'NVHPC-22.5']
ONEAPI: ['0', '2023.2.0', '2024.0']
ONEAPI: ['0']

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
with:
fetch-depth: '0'
- name: Install CUDA runtime (if needed)
if: matrix.CUDA != '0' && matrix.ONEAPI == 0
if: matrix.CUDA != '0' && matrix.ONEAPI == '0'
run: |
case ${{ matrix.CUDA }} in
8.0)
Expand Down Expand Up @@ -95,6 +95,7 @@ jobs:
env:
CXX: ${{ matrix.compiler }}
run: |
ls ${CUDA_ROOT}
export CPATH=${CUDA_ROOT}/include:${CPATH}
export LD_LIBRARY_PATH=${CUDA_ROOT}/lib64:${CUDA_ROOT}/lib64/stubs:${LD_LIBRARY_PATH}
export LIBRARY_PATH=${CUDA_ROOT}/lib64:${CUDA_ROOT}/lib64/stubs:${LIBRARY_PATH}
Expand Down

0 comments on commit f48e997

Please sign in to comment.