From 2a2330a77e58e6091e203d1ac16e21214b9bf660 Mon Sep 17 00:00:00 2001 From: Hind Montassif Date: Thu, 8 Aug 2024 14:46:40 +0200 Subject: [PATCH] Remove workaround (issue now fixed) --- .github/workflows/static_build.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/static_build.yml b/.github/workflows/static_build.yml index 605ce1aafe..58e9be9e66 100644 --- a/.github/workflows/static_build.yml +++ b/.github/workflows/static_build.yml @@ -148,9 +148,6 @@ jobs: reproc-cpp-static>=14.2.4.post0 - name: build micromamba shell: cmd /C call {0} - # Using D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR is a workaround to fix CI failure on win-64 - # after updating runners to 20240603.1 image - # (cf. https://github.com/actions/runner-images/issues/10004#issuecomment-2153445161) run: | set CMAKE_PREFIX_PATH=.\vcpkg_installed\x64-windows-static-md;%CONDA_PREFIX%\Library cmake -S . ^ @@ -158,7 +155,6 @@ jobs: -D CMAKE_CXX_COMPILER_LAUNCHER=sccache ^ -D CMAKE_C_COMPILER_LAUNCHER=sccache ^ -D CMAKE_MSVC_RUNTIME_LIBRARY="MultiThreadedDLL" ^ - -D CMAKE_CXX_FLAGS=" /D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR" ^ -D CMAKE_BUILD_TYPE="Release" ^ -D BUILD_LIBMAMBA=ON ^ -D BUILD_STATIC=ON ^