From 0e37973a015a27a4a410a4ae37c0aa99bdd63ea8 Mon Sep 17 00:00:00 2001 From: Erik Bershel <110455084+erik-bershel@users.noreply.github.com> Date: Fri, 25 Apr 2025 13:32:50 +0200 Subject: [PATCH] [macOS] Remove stale VCPKG workaround (#12092) --- images/macos/scripts/build/install-vcpkg.sh | 7 ------- 1 file changed, 7 deletions(-) diff --git a/images/macos/scripts/build/install-vcpkg.sh b/images/macos/scripts/build/install-vcpkg.sh index f8d17b37e..a5a3fc6a5 100644 --- a/images/macos/scripts/build/install-vcpkg.sh +++ b/images/macos/scripts/build/install-vcpkg.sh @@ -10,11 +10,6 @@ source ~/utils/utils.sh VCPKG_INSTALLATION_ROOT=/usr/local/share/vcpkg echo "export VCPKG_INSTALLATION_ROOT=${VCPKG_INSTALLATION_ROOT}" | tee -a ~/.bashrc -# workaround https://github.com/microsoft/vcpkg/issues/27786 - -mkdir -p /Users/runner/.vcpkg -touch /Users/runner/.vcpkg/vcpkg.path.txt - # Install vcpkg sudo git clone https://github.com/Microsoft/vcpkg $VCPKG_INSTALLATION_ROOT sudo $VCPKG_INSTALLATION_ROOT/bootstrap-vcpkg.sh @@ -22,6 +17,4 @@ $VCPKG_INSTALLATION_ROOT/vcpkg integrate install sudo chmod -R 0777 $VCPKG_INSTALLATION_ROOT ln -sf $VCPKG_INSTALLATION_ROOT/vcpkg /usr/local/bin -rm -rf /Users/runner/.vcpkg - invoke_tests "Common" "vcpkg"