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 Jul 13, 2022
1 parent 10bbcdb commit e35f980
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 @@ -183,6 +183,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 @@ -201,6 +219,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 @@ -217,6 +251,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 e35f980

Please sign in to comment.