Skip to content

Commit 9d8b43a

Browse files
authored
Add CI workflows for MacOS. (RedisLabs#101)
1 parent a8ef140 commit 9d8b43a

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,14 @@ jobs:
1414
run: sudo apt-get install autoconf automake pkg-config libevent-dev libpcre3-dev libssl-dev
1515
- name: Build
1616
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

Comments
 (0)