Skip to content

Commit

Permalink
Fix integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jfalcou committed Nov 29, 2024
1 parent 65a09ec commit f8d662e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install SPY from checkout
run: |
mkdir build && cd build
cmake -G Ninja .. -DSPY_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++
cmake -G Ninja .. -DSPY_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS="-std=c++20"
ninja install
- name: Run Sample CMake
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
run: |
git config --global --add safe.directory /__w/kumi/kumi
mkdir install && cd install
cmake ../test/integration/fetch-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DSPY_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++
cmake ../test/integration/fetch-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DSPY_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_CXX_FLAGS="-std=c++20"
ninja && ctest --verbose
cpm:
Expand All @@ -71,5 +71,5 @@ jobs:
run: |
git config --global --add safe.directory /__w/kumi/kumi
mkdir install && cd install
cmake ../test/integration/cpm-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DCMAKE_CXX_COMPILER=clang++ -DSPY_BUILD_TEST=OFF
cmake ../test/integration/cpm-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DCMAKE_CXX_FLAGS="-std=c++20" -DCMAKE_CXX_COMPILER=clang++ -DSPY_BUILD_TEST=OFF
ninja && ctest --verbose

0 comments on commit f8d662e

Please sign in to comment.