Skip to content

Commit

Permalink
CI: avoid trying to compile CUDA or gdrapi
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Aug 21, 2023
1 parent fce4be3 commit 747256a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install build requirements
run: ./.ci/py-build-requirements.sh
- name: Set up build directory
run: meson setup build -Dwerror=true -Dauto_features=${{ matrix.extras }}
run: meson setup build -Dwerror=true -Dauto_features=${{ matrix.extras }} -Dcuda=disabled -Dgdrapi=disabled
- name: Build
run: meson compile
- name: Run tests
Expand Down Expand Up @@ -162,7 +162,14 @@ jobs:
- name: Install build requirements
run: ./.ci/py-build-requirements.sh
- name: Set up C++ build
run: meson setup build -Dwerror=true -Dauto_features=enabled -Dbuildtype=debug -Db_coverage=true
run: >
meson setup build
-Dwerror=true
-Dauto_features=enabled
-Dcuda=disabled
-Dgdrapi=disabled
-Dbuildtype=debug
-Db_coverage=true
- name: Build C++
run: meson compile
- name: Run C++ tests
Expand Down

0 comments on commit 747256a

Please sign in to comment.