mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 08:25:43 +08:00
Fix win ci
This commit is contained in:
parent
6f2ead1a0e
commit
bff1a6036a
32
.github/workflows/ci.yml
vendored
32
.github/workflows/ci.yml
vendored
@ -76,3 +76,35 @@ jobs:
|
||||
-DSPDLOG_SANITIZE_ADDRESS=OFF
|
||||
make -j2
|
||||
ctest -j2 --output-on-failure
|
||||
|
||||
build_windows:
|
||||
runs-on: windows-latest
|
||||
name: "Windows MSVC 2022 (C++11, Release)"
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install CMake
|
||||
run: choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"' --no-progress
|
||||
|
||||
- name: Verify CMake Version
|
||||
run: cmake --version
|
||||
|
||||
- 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
|
||||
|
||||
- name: Build
|
||||
run: cmake --build build --config Release
|
||||
|
||||
- name: Run Tests
|
||||
run: ctest --test-dir build -C Release --output-on-failure --verbose
|
44
.github/workflows/win-ci.yml
vendored
44
.github/workflows/win-ci.yml
vendored
@ -1,44 +0,0 @@
|
||||
name: Windows MSVC Build and Test
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
matrix:
|
||||
msvc_version:
|
||||
- { name: "Visual Studio 15 2017", generator: "Visual Studio 15 2017" }
|
||||
- { name: "Visual Studio 16 2019", generator: "Visual Studio 16 2019" }
|
||||
- { name: "Visual Studio 17 2022", generator: "Visual Studio 17 2022" }
|
||||
|
||||
name: "Windows ${{ matrix.msvc_version.name }} (C++11, Release)"
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install CMake
|
||||
run: choco install cmake --installargs '"ADD_CMAKE_TO_PATH=System"' --no-progress
|
||||
|
||||
- name: Verify CMake Version
|
||||
run: cmake --version
|
||||
|
||||
- name: Configure CMake
|
||||
run: |
|
||||
cmake -S . -B build -G "${{ matrix.msvc_version.generator }}" -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
|
||||
|
||||
- name: Run Tests
|
||||
run: ctest --test-dir build -C Release --output-on-failure --verbose
|
Loading…
Reference in New Issue
Block a user