Skip to content

Commit

Permalink
Fixup ci for new macos.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Oct 18, 2024
1 parent 73f61a9 commit 8d555f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ jobs:
autoconf && autoheader
(cd simdzone && autoconf && autoheader)
libtoolize -c -i || glibtoolize -c -i
./configure --enable-checking --disable-flto --with-ssl=yes --with-libevent=yes
if test ${{runner.os}} = 'macOS'; then
./configure --enable-checking --disable-flto --with-ssl=yes --with-libevent=/opt/homebrew/opt/libevent
else
./configure --enable-checking --disable-flto --with-ssl=yes --with-libevent=yes
fi
make -j 2
- name: 'Run tests'
id: test
Expand Down

0 comments on commit 8d555f7

Please sign in to comment.