Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gabime authored Nov 2, 2024
1 parent 25b9f24 commit 60f17e1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ jobs:
fail-fast: true
matrix:
config:
- GENERATOR: "Visual Studio 17 2022"
ARCH: "-A x64"
- GENERATOR: "Visual Studio 17 2022 -A x64"
BUILD_TYPE: Release
BUILD_SHARED: 'ON'
FATAL_ERRORS: 'ON'
Expand All @@ -102,7 +101,7 @@ jobs:
BUILD_EXAMPLE: 'OFF'
USE_STD_FORMAT: 'ON'
CXX_STANDARD: 20
- GENERATOR: "Visual Studio 17 2022"
- GENERATOR: "Visual Studio 17 2022 -A x64"
ARCH: "-A x64"
BUILD_TYPE: Release
BUILD_SHARED: 'ON'
Expand All @@ -112,6 +111,16 @@ jobs:
BUILD_EXAMPLE: 'OFF'
USE_STD_FORMAT: 'ON'
CXX_STANDARD: 20
- GENERATOR: "Visual Studio 17 2022 -A x64"
ARCH: "-A x64"
BUILD_TYPE: Release
BUILD_SHARED: 'ON'
FATAL_ERRORS: 'ON'
WCHAR: 'OFF'
WCHAR_FILES: 'OFF'
BUILD_EXAMPLE: 'ON'
USE_STD_FORMAT: 'OFF'
CXX_STANDARD: 20

steps:
- name: Checkout code
Expand All @@ -122,7 +131,7 @@ jobs:
run: |
mkdir build
cd build
cmake -G "${{ matrix.config.GENERATOR }}" ${{ matrix.config.ARCH }} `
cmake -G "${{ matrix.config.GENERATOR }}" `
-D CMAKE_BUILD_TYPE=${{ matrix.config.BUILD_TYPE }} `
-D BUILD_SHARED_LIBS=${{ matrix.config.BUILD_SHARED }} `
-D SPDLOG_WCHAR_SUPPORT=${{ matrix.config.WCHAR }} `
Expand Down

0 comments on commit 60f17e1

Please sign in to comment.