We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00ddf88 commit affb64fCopy full SHA for affb64f
1 file changed
.github/workflows/ci.yml
@@ -63,6 +63,12 @@ jobs:
63
64
NPROC=$(nproc 2>/dev/null || sysctl -n hw.ncpu)
65
66
+ if [ "$RUNNER_OS" = "macOS" ]; then
67
+ BREW_PREFIX=$(brew --prefix)
68
+ export CFLAGS="-I${BREW_PREFIX}/opt/openssl/include -I${BREW_PREFIX}/opt/curl/include -I${BREW_PREFIX}/opt/expat/include -I${BREW_PREFIX}/opt/gettext/include"
69
+ export LDFLAGS="-L${BREW_PREFIX}/opt/openssl/lib -L${BREW_PREFIX}/opt/curl/lib -L${BREW_PREFIX}/opt/expat/lib -L${BREW_PREFIX}/opt/gettext/lib"
70
+ fi
71
+
72
make prefix="$HOME/git-install" -j"$NPROC" all
73
make prefix="$HOME/git-install" install
74
0 commit comments