-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
252 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
name: msvc | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_msvc-2022: | ||
runs-on: windows-latest | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
config: | ||
- GENERATOR: "Visual Studio 17 2022" | ||
BUILD_TYPE: Release | ||
BUILD_SHARED: 'ON' | ||
FATAL_ERRORS: 'ON' | ||
WCHAR: 'OFF' | ||
WCHAR_FILES: 'OFF' | ||
BUILD_EXAMPLE: 'OFF' | ||
USE_STD_FORMAT: 'ON' | ||
CXX_STANDARD: 20 | ||
- GENERATOR: "Visual Studio 17 2022" | ||
BUILD_TYPE: Release | ||
BUILD_SHARED: 'ON' | ||
FATAL_ERRORS: 'ON' | ||
WCHAR: 'ON' | ||
WCHAR_FILES: 'ON' | ||
BUILD_EXAMPLE: 'OFF' | ||
USE_STD_FORMAT: 'ON' | ||
CXX_STANDARD: 20 | ||
- GENERATOR: "Visual Studio 17 2022" | ||
BUILD_TYPE: Release | ||
BUILD_SHARED: 'ON' | ||
FATAL_ERRORS: 'ON' | ||
WCHAR: 'OFF' | ||
WCHAR_FILES: 'OFF' | ||
BUILD_EXAMPLE: 'ON' | ||
USE_STD_FORMAT: 'OFF' | ||
CXX_STANDARD: 17 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: CMake ${{ matrix.config.GENERATOR }} CXX=${{matrix.config.CXX_STANDARD}} WCHAR=${{matrix.config.WCHAR_FILES}} STD_FORMAT=${{matrix.config.USE_STD_FORMAT}} | ||
shell: pwsh | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -G "${{ matrix.config.GENERATOR }}" -A x64 ` | ||
-D CMAKE_BUILD_TYPE=${{ matrix.config.BUILD_TYPE }} ` | ||
-D BUILD_SHARED_LIBS=${{ matrix.config.BUILD_SHARED }} ` | ||
-D SPDLOG_WCHAR_SUPPORT=${{ matrix.config.WCHAR }} ` | ||
-D SPDLOG_WCHAR_FILENAMES=${{ matrix.config.WCHAR_FILES }} ` | ||
-D SPDLOG_BUILD_EXAMPLE=${{ matrix.config.BUILD_EXAMPLE }} ` | ||
-D SPDLOG_BUILD_EXAMPLE_HO=${{ matrix.config.BUILD_EXAMPLE }} ` | ||
-D SPDLOG_BUILD_TESTS=ON ` | ||
-D SPDLOG_BUILD_TESTS_HO=OFF ` | ||
-D SPDLOG_BUILD_WARNINGS=${{ matrix.config.FATAL_ERRORS }} ` | ||
-D SPDLOG_USE_STD_FORMAT=${{ matrix.config.USE_STD_FORMAT }} ` | ||
-D CMAKE_CXX_STANDARD=${{ matrix.config.CXX_STANDARD }} .. | ||
- name: Build | ||
shell: pwsh | ||
run: | | ||
cd build | ||
cmake --build . --parallel --config ${{ matrix.config.BUILD_TYPE }} | ||
- name: Run Tests | ||
shell: pwsh | ||
env: | ||
PATH: ${{ env.PATH }};${{ github.workspace }}\build\_deps\catch2-build\src\${{ matrix.config.BUILD_TYPE }};${{ github.workspace }}\build\${{ matrix.config.BUILD_TYPE }} | ||
run: | | ||
build\tests\${{ matrix.config.BUILD_TYPE }}\spdlog-utests.exe | ||
# ----------------------------------------------------------------------- | ||
# MSVC 2019 build matrix | ||
# ----------------------------------------------------------------------- | ||
build_msvc-2019: | ||
runs-on: windows-2019 | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
config: | ||
- GENERATOR: "Visual Studio 16 2019" | ||
BUILD_TYPE: Release | ||
BUILD_SHARED: 'ON' | ||
FATAL_ERRORS: 'ON' | ||
WCHAR: 'OFF' | ||
WCHAR_FILES: 'OFF' | ||
BUILD_EXAMPLE: 'ON' | ||
USE_STD_FORMAT: 'OFF' | ||
CXX_STANDARD: 17 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: CMake ${{ matrix.config.GENERATOR }} CXX=${{matrix.config.CXX_STANDARD}} WCHAR=${{matrix.config.WCHAR_FILES}} STD_FORMAT=${{matrix.config.USE_STD_FORMAT}} | ||
shell: pwsh | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -G "${{ matrix.config.GENERATOR }}" -A x64 ` | ||
-D CMAKE_BUILD_TYPE=${{ matrix.config.BUILD_TYPE }} ` | ||
-D BUILD_SHARED_LIBS=${{ matrix.config.BUILD_SHARED }} ` | ||
-D SPDLOG_WCHAR_SUPPORT=${{ matrix.config.WCHAR }} ` | ||
-D SPDLOG_WCHAR_FILENAMES=${{ matrix.config.WCHAR_FILES }} ` | ||
-D SPDLOG_BUILD_EXAMPLE=${{ matrix.config.BUILD_EXAMPLE }} ` | ||
-D SPDLOG_BUILD_EXAMPLE_HO=${{ matrix.config.BUILD_EXAMPLE }} ` | ||
-D SPDLOG_BUILD_TESTS=ON ` | ||
-D SPDLOG_BUILD_TESTS_HO=OFF ` | ||
-D SPDLOG_BUILD_WARNINGS=${{ matrix.config.FATAL_ERRORS }} ` | ||
-D SPDLOG_USE_STD_FORMAT=${{ matrix.config.USE_STD_FORMAT }} ` | ||
-D CMAKE_CXX_STANDARD=${{ matrix.config.CXX_STANDARD }} .. | ||
- name: Build | ||
shell: pwsh | ||
run: | | ||
cd build | ||
cmake --build . --parallel --config ${{ matrix.config.BUILD_TYPE }} | ||
- name: Run Tests | ||
shell: pwsh | ||
env: | ||
PATH: ${{ env.PATH }};${{ github.workspace }}\build\_deps\catch2-build\src\${{ matrix.config.BUILD_TYPE }};${{ github.workspace }}\build\${{ matrix.config.BUILD_TYPE }} | ||
run: | | ||
build\tests\${{ matrix.config.BUILD_TYPE }}\spdlog-utests.exe |