Skip to content

Commit 744964a

Browse files
committed
Attempt to stop depending on homebrew
Refs #1158
1 parent f58c661 commit 744964a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cd.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,12 @@ jobs:
102102
linux+x86-64)
103103
apt-get update
104104
apt-get install curl gcc perl-modules openssl make xz-utils --yes;;
105+
darwin+aarch64)
106+
# https://github.com/pkgxdev/pkgx/issues/1158
107+
brew uninstall --ignore-dependencies xz
108+
export MACOSX_DEPLOYMENT_TARGET="11.0";;
105109
esac
106-
if: ${{ runner.os == 'Linux' }}
110+
if: ${{ runner.os != 'Windows' }}
107111

108112
- name: Prep
109113
if: ${{ runner.os == 'Windows' }}

0 commit comments

Comments
 (0)