From e5038210b6a363c66eec7ccce6a48b0a7398c6c7 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Sun, 14 Jul 2024 14:49:16 -0700 Subject: [PATCH] CI: MacOS to macos-13 macos-latest uses arm64, and seems to ship a broken iconv that fails tests. Revert this once the issue is resolved. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d6b65329..908dc49c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,13 +52,13 @@ jobs: } - { name: macOS Debug, - os: macos-latest, + os: macos-13, buildtype: debugoptimized, args: -Ddefault_library=static -Dbuild_osx_bundle=true -Dlocal_boost=true --force-fallback-for=ffms2 } - { name: macOS Release, - os: macos-latest, + os: macos-13, buildtype: release, args: -Ddefault_library=static -Dbuild_osx_bundle=true -Dlocal_boost=true --force-fallback-for=ffms2 }