Skip to content

Commit

Permalink
Do not run CUDA variants in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
reuterbal committed Sep 29, 2023
1 parent dab193c commit ff2dec9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
- arch: nvhpc/21.9
nvhpc_version: 21.9
io_library_flag: ''
build_flags: '--with-gpu --with-loki --with-cuda --with-atlas'
ctest_exclude_pattern: '-gpu-|-scc-|-loki-c|-cuda' # GPU variants don't work on CPU runners, loki-c variant causes SIGFPE
build_flags: '--with-gpu --with-loki --with-atlas'
ctest_exclude_pattern: '-gpu-|-scc-|-loki-c' # GPU variants don't work on CPU runners, loki-c variant causes SIGFPE
- arch: nvhpc/21.9
nvhpc_version: 21.9
io_library_flag: ''
Expand All @@ -69,7 +69,7 @@ jobs:
- arch: nvhpc/23.5
nvhpc_version: 23.5
io_library_flag: ''
build_flags: '--with-gpu --with-loki --with-cuda --with-atlas'
build_flags: '--with-gpu --with-loki --with-atlas'
ctest_exclude_pattern: '-gpu-|-scc-|-loki-c|-loki-sca|-cuda' # GPU variants don't work on CPU runners, loki-c variant causes SIGFPE
- arch: nvhpc/23.5
nvhpc_version: 23.5
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:

# Run ctest
- name: Run CTest
if: ${{ !contains(matrix.build_flags, '--single-precision') }}
if: ${{ !contains(matrix.build_flags, '--single-precision') && !contains(matrix.build_flags, '--with-cuda') }}
working-directory: ./build
run: |
source env.sh
Expand Down

0 comments on commit ff2dec9

Please sign in to comment.