Skip to content

Commit

Permalink
Add MSVC debug configurations to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasbuhr committed Jun 12, 2023
1 parent 33241b0 commit 196d27f
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,24 @@ jobs:
exe_linker_flags: -lc++,
cxxver: 20,
}
- {
name: "Windows MSVC 2017 (x64) C++17 Debug",
os: windows-2019,
buildtype: Debug,
cxx: "cl",
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 17,
msvcver: 2017,
}
- {
name: "Windows MSVC 2017 (x64) C++20 Debug",
os: windows-2019,
buildtype: Debug,
cxx: "cl",
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 20,
msvcver: 2017,
}
- {
name: "Windows MSVC 2017 (x64) C++17",
os: windows-2019,
Expand All @@ -252,6 +270,22 @@ jobs:
cxxver: 20,
msvcver: 2017,
}
- {
name: "Windows MSVC 2019 (x64) C++17 Debug",
os: windows-2019,
buildtype: Debug,
cxx: "cl",
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 17,
}
- {
name: "Windows MSVC 2019 (x64) C++20 Debug",
os: windows-2019,
buildtype: Debug,
cxx: "cl",
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 20,
}
- {
name: "Windows MSVC 2019 (x64) C++17",
os: windows-2019,
Expand All @@ -268,6 +302,22 @@ jobs:
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 20,
}
- {
name: "Windows MSVC 2022 (x64) C++17 Debug",
os: windows-2022,
buildtype: Debug,
cxx: "cl",
environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 17,
}
- {
name: "Windows MSVC 2022 (x64) C++20 Debug",
os: windows-2022,
buildtype: Debug,
cxx: "cl",
environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat",
cxxver: 20,
}
- {
name: "Windows MSVC 2022 (x64) C++17",
os: windows-2022,
Expand Down

0 comments on commit 196d27f

Please sign in to comment.