We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8ef140 commit 9d8b43aCopy full SHA for 9d8b43a
.github/workflows/ci.yml
@@ -14,3 +14,14 @@ jobs:
14
run: sudo apt-get install autoconf automake pkg-config libevent-dev libpcre3-dev libssl-dev
15
- name: Build
16
run: autoreconf -ivf && ./configure && make
17
+ build-macos:
18
+ strategy:
19
+ matrix:
20
+ platform: [macos-latest]
21
+ runs-on: ${{ matrix.platform }}
22
+ steps:
23
+ - uses: actions/checkout@v1
24
+ - name: Install dependencies
25
+ run: brew install autoconf automake libtool libevent pkg-config openssl@1.1
26
+ - name: Build
27
+ run: autoreconf -ivf && PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig ./configure && make
0 commit comments