Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime committed Nov 1, 2024
1 parent 3fec1a8 commit 3d3f71d
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,17 @@ jobs:
run: choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"' --no-progress

- name: Configure CMake
run: cmake -S . -B build -G "Visual Studio 17 2022" -A x64 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_STANDARD=11 \
-DSPDLOG_BUILD_EXAMPLE=ON \
-DSPDLOG_BUILD_EXAMPLE_HO=ON \
-DSPDLOG_BUILD_WARNINGS=ON \
-DSPDLOG_BUILD_BENCH=OFF \
-DSPDLOG_BUILD_TESTS=ON \
-DSPDLOG_BUILD_TESTS_HO=OFF \
-DSPDLOG_SANITIZE_ADDRESS=OFF
run: |
cmake -S . -B build -G "Visual Studio 17 2022" -A x64
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_CXX_STANDARD=11
-DSPDLOG_BUILD_EXAMPLE=ON
-DSPDLOG_BUILD_EXAMPLE_HO=ON
-DSPDLOG_BUILD_WARNINGS=ON
-DSPDLOG_BUILD_BENCH=OFF
-DSPDLOG_BUILD_TESTS=ON
-DSPDLOG_BUILD_TESTS_HO=OFF
-DSPDLOG_SANITIZE_ADDRESS=OFF
- name: Build
run: cmake --build build --config Release
Expand Down

0 comments on commit 3d3f71d

Please sign in to comment.