From dcaa11347dd2516c7c764ea616c222edd936f1fe Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Wed, 8 Apr 2026 10:35:42 -0700 Subject: [PATCH 1/2] setup-macos: Disable installation of imagemagick It is failing with the following error message: ==> imagemagick imagemagick-full includes additional tools and libraries that are not included in the regular imagemagick formula. Fixes https://github.com/AOMediaCodec/libavif/issues/3172. --- .github/actions/setup-macos/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-macos/action.yml b/.github/actions/setup-macos/action.yml index 617536c23a..2173a7d330 100644 --- a/.github/actions/setup-macos/action.yml +++ b/.github/actions/setup-macos/action.yml @@ -60,6 +60,7 @@ runs: - name: Install imagemagick # imagemagick is used in sh tests (not gtest tests) but we assume that no tests are run by the CI # if gtest is off + # TODO: issue #3172 - Disable temporarily. if: ${{ inputs.gtest != 'OFF' }} run: echo "AVIF_MAC_LIBRARIES=${{ env.AVIF_MAC_LIBRARIES }} imagemagick" >> "$GITHUB_ENV" shell: bash From acd0198ceddc5f9c35bbec1d893b0eebef720000 Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Wed, 8 Apr 2026 10:48:29 -0700 Subject: [PATCH 2/2] Actully disable the action --- .github/actions/setup-macos/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-macos/action.yml b/.github/actions/setup-macos/action.yml index 2173a7d330..82c6dcd22a 100644 --- a/.github/actions/setup-macos/action.yml +++ b/.github/actions/setup-macos/action.yml @@ -61,7 +61,8 @@ runs: # imagemagick is used in sh tests (not gtest tests) but we assume that no tests are run by the CI # if gtest is off # TODO: issue #3172 - Disable temporarily. - if: ${{ inputs.gtest != 'OFF' }} + # if: ${{ inputs.gtest != 'OFF' }} + if: false run: echo "AVIF_MAC_LIBRARIES=${{ env.AVIF_MAC_LIBRARIES }} imagemagick" >> "$GITHUB_ENV" shell: bash - name: Install gtest