From 3b47319d3ff6c898bf62bbcf7f3f90e54fad1730 Mon Sep 17 00:00:00 2001 From: Laurynas Biveinis Date: Mon, 6 Nov 2023 21:08:00 +0200 Subject: [PATCH] Downgrade MSVC toolchain version to 14.29 for GitHub Actions [circle skip] Upgrading to 14.37 gives an internal compiler error: https://github.com/laurynas-biveinis/unodb/issues/547, and the previously-working 14.35 version is no longer available. --- .github/workflows/msvc-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msvc-build.yml b/.github/workflows/msvc-build.yml index 2e59a07f..84cdd046 100644 --- a/.github/workflows/msvc-build.yml +++ b/.github/workflows/msvc-build.yml @@ -54,7 +54,7 @@ jobs: - name: Setup command line tools uses: ilammy/msvc-dev-cmd@v1 with: - toolset: 14.35 + toolset: 14.29 - name: Configure CMake run: cmake --preset "${{ matrix.preset }}"