Skip to content

Commit

Permalink
Fix GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
toroidal-code committed Feb 18, 2024
1 parent d0cd359 commit 9531f1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
if: ${{ matrix.compiler == 'llvm' && matrix.os == 'macos-latest' }}

- name: Configure for native compiler
run: cmake -B build -DBUILD_TESTS=YES
run: cmake -B build -DCPPSPEC_BUILD_TESTS=YES
if: ${{ matrix.compiler == 'native'}}

- name: Configure for non-native compiler
run: cmake -B build -G Ninja -DBUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX"
run: cmake -B build -G Ninja -DCPPSPEC_BUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX"
if: ${{ matrix.compiler != 'native'}}

- name: Build
Expand Down

0 comments on commit 9531f1c

Please sign in to comment.