From 1510de7a7fcf437cba68e1b0d4a7701a0d5e0aff Mon Sep 17 00:00:00 2001 From: Mark Callow Date: Thu, 27 Jun 2024 18:26:49 +0900 Subject: [PATCH] Remove previous workaround for mutex issue. --- .github/workflows/windows.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 3a1bcacdcb..4ed9309b6c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -255,14 +255,6 @@ jobs: if: matrix.check_mkvk == 'ONLY' run: scripts/check_mkvk.ps1 - # Works around issues with 2024.06.03.1.0 runner image. See - # https://github.com/actions/runner-images/issues/10004 and - # https://github.com/actions/runner-images/issues/10055 - - name: Remove conflicting msvcp140.dll as workaround for runner image bugs. - shell: bash -l {0} - run: | - find "C:/hostedtoolcache/windows/Java_Temurin-Hotspot_jdk" -name "msvcp140.dll" -exec rm {} \; - - name: Test Windows build # Tests built for arm64 can't be run as the CI runners are all x64. if: matrix.arch == 'x64' && matrix.options.tests == 'ON'