From 0cfa7ed6f628f87d073aeb524a3487b4964ea67e Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Tue, 27 Aug 2024 15:27:06 +0200 Subject: [PATCH] ci: add amd64 Windows CMake Debug build --- .github/workflows/amd64_windows_cmake_cpp.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/amd64_windows_cmake_cpp.yml b/.github/workflows/amd64_windows_cmake_cpp.yml index f970d6c4475..9034818f8d4 100644 --- a/.github/workflows/amd64_windows_cmake_cpp.yml +++ b/.github/workflows/amd64_windows_cmake_cpp.yml @@ -10,9 +10,10 @@ jobs: matrix: cmake: [ {generator: "Visual Studio 17 2022", config: Release, build_target: ALL_BUILD, test_target: RUN_TESTS, install_target: INSTALL}, + {generator: "Visual Studio 17 2022", config: Debug, build_target: ALL_BUILD, test_target: RUN_TESTS, install_target: INSTALL}, ] fail-fast: false - name: Windows • ${{ matrix.cmake.generator }} • C++ + name: Windows • ${{ matrix.cmake.generator }}(${{ matrix.cmake.config }}) • C++ runs-on: windows-latest steps: - uses: actions/checkout@v4