From 76831a2bfd4c095f11bfdedd54d829e7edc58ca5 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Thu, 17 Feb 2022 17:32:01 -0800 Subject: [PATCH] ci: rm zlib on arm64 --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e111c508..fbba90628 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -427,7 +427,10 @@ jobs: # HACK: Remove unsignable frameworks rm -r $BUNDLE_NAME/Contents/Frameworks/QtUiPlugin.framework - #rm -r $BUNDLE_NAME/Contents/Frameworks/QtZlib.framework + if [ "${{ matrix.os-arch }}" == "arm64" ] + then + rm -r $BUNDLE_NAME/Contents/Frameworks/QtZlib.framework + fi # Sign application codesign --deep --sign "Developer ID Application: Olive Studios LLC" $BUNDLE_NAME