From 827e5b82a75470aae38f0eeca8ef09f8416d6ff5 Mon Sep 17 00:00:00 2001 From: Steve Kirbach Date: Mon, 8 Apr 2024 14:55:24 -0700 Subject: [PATCH 1/2] fix inner loop by removing clang --- CMakePresets.json | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/CMakePresets.json b/CMakePresets.json index 3fd0e5db..6c9d953a 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -29,18 +29,6 @@ "binaryDir": "${sourceDir}/build/debug", "installDir": "${sourceDir}/out/debug", "inherits": [ "base" ], - "cacheVariables": { - "CMAKE_BUILD_TYPE": "Debug", - "CMAKE_C_COMPILER": "clang-cl", - "CMAKE_CXX_COMPILER": "clang-cl" - } - }, - { - "name": "debug-msvc", - "displayName": "Debug (MSVC)", - "binaryDir": "${sourceDir}/build/debug-msvc", - "installDir": "${sourceDir}/out/debug-msvc", - "inherits": [ "base" ], "cacheVariables": { "CMAKE_BUILD_TYPE": "Debug", "CMAKE_C_COMPILER": "cl", @@ -65,10 +53,6 @@ "name": "debug", "configurePreset": "debug" }, - { - "name": "debug-msvc", - "configurePreset": "debug-msvc" - }, { "name": "release", "configurePreset": "release" From 6a14776805f812e1ebc54a30dc13235ded2238bf Mon Sep 17 00:00:00 2001 From: Steve Kirbach Date: Mon, 8 Apr 2024 15:39:20 -0700 Subject: [PATCH 2/2] use debug config --- .github/workflows/pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4a3d8439..725427c9 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -14,5 +14,5 @@ jobs: submodules: recursive - uses: ./.github/actions/windows-build with: - config: debug-msvc + config: debug GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file