Skip to content

Commit

Permalink
Add CI workflows for MacOS. (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
yossigo authored Nov 17, 2019
1 parent a8ef140 commit 9d8b43a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ jobs:
run: sudo apt-get install autoconf automake pkg-config libevent-dev libpcre3-dev libssl-dev
- name: Build
run: autoreconf -ivf && ./configure && make
build-macos:
strategy:
matrix:
platform: [macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: brew install autoconf automake libtool libevent pkg-config [email protected]
- name: Build
run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/[email protected]/lib/pkgconfig ./configure && make

0 comments on commit 9d8b43a

Please sign in to comment.