From e6ae8abd162dc0392ff747f7fb0bfcffed8f2ee0 Mon Sep 17 00:00:00 2001 From: Logan McNaughton <848146+loganmc10@users.noreply.github.com> Date: Tue, 4 Jun 2024 09:44:50 -0600 Subject: [PATCH] Fix Windows build (#432) * Fix Windows build * Update build.sh --- .github/workflows/build.yml | 4 ++-- build.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e53c71..90a34d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ jobs: env: NETPLAY_AUTH_CODE: ${{ secrets.NETPLAY_AUTH_CODE }} build-windows: - runs-on: windows-2022 + runs-on: windows-latest steps: - uses: actions/checkout@v4 - uses: msys2/setup-msys2@v2 @@ -59,7 +59,7 @@ jobs: path: simple64-*.zip build-mac: if: ${{ false }} - runs-on: macos-11 + runs-on: macos-13 steps: - uses: actions/checkout@v4 - name: brew update diff --git a/build.sh b/build.sh index 254a90d..81acafa 100755 --- a/build.sh +++ b/build.sh @@ -130,9 +130,9 @@ if [[ ${UNAME} == *"MINGW64"* ]]; then cp -v "${MSYSTEM_PREFIX}/bin/libstdc++-6.dll" "${install_dir}" cp -v "${MSYSTEM_PREFIX}/bin/libdouble-conversion.dll" "${install_dir}" cp -v "${MSYSTEM_PREFIX}/bin/zlib1.dll" "${install_dir}" - cp -v "${MSYSTEM_PREFIX}/bin/libicuin74.dll" "${install_dir}" - cp -v "${MSYSTEM_PREFIX}/bin/libicuuc74.dll" "${install_dir}" - cp -v "${MSYSTEM_PREFIX}/bin/libicudt74.dll" "${install_dir}" + cp -v "${MSYSTEM_PREFIX}/bin/libicuin75.dll" "${install_dir}" + cp -v "${MSYSTEM_PREFIX}/bin/libicuuc75.dll" "${install_dir}" + cp -v "${MSYSTEM_PREFIX}/bin/libicudt75.dll" "${install_dir}" cp -v "${MSYSTEM_PREFIX}/bin/libbrotlidec.dll" "${install_dir}" cp -v "${MSYSTEM_PREFIX}/bin/libbrotlicommon.dll" "${install_dir}" cp -v "${MSYSTEM_PREFIX}/bin/libpcre2-16-0.dll" "${install_dir}"