From 5641503c057be46d0baa6559584dbd30cd7eb74a Mon Sep 17 00:00:00 2001 From: Jose Fonseca Date: Sat, 9 Dec 2023 14:12:19 +0000 Subject: [PATCH] Revert "ci: Temporary workaround for build race condition." This reverts commit f9c837ede6987b4c14798606c4c8e6a7e24a3f9d. --- ci/build.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/build.ps1 b/ci/build.ps1 index 3945563..7a0a6b6 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -119,10 +119,6 @@ Exec { cmake "-S." "-B$buildDir" -G $generator "-DCMAKE_BUILD_TYPE=$CMAKE_BUILD_ # # Build # -if ($target -eq "mingw32") { -# XXX: Temporary hack to avoid "No rule to make target lib*.dll.a" - Exec { cmake --build $buildDir --use-stderr --target libmgwhelp_implib --target libexchndl_implib } -} Exec { cmake --build $buildDir --use-stderr --target all } Exec { python tests\check_dynamic_linkage.py --objdump=objdump --validate $buildDir\bin\*.dll $buildDir\bin\*.exe }