Skip to content

Commit 9531f1c

Browse files
committed
Fix GitHub Actions
1 parent d0cd359 commit 9531f1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ jobs:
4343
if: ${{ matrix.compiler == 'llvm' && matrix.os == 'macos-latest' }}
4444

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

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

5353
- name: Build

0 commit comments

Comments
 (0)