Skip to content

Commit 60be61d

Browse files
committed
add osx openssl build to ci
need to use brew to install a compatable version of openssl and then set pkgconfig to find the newly installed version.
1 parent ae303c2 commit 60be61d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.travis.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ matrix:
7474
- make runtest
7575
- make runtest-valgrind
7676

77-
# default osx build with xcode (clang)
77+
# default osx build
7878
- os: osx
7979
env:
8080
- TEST="osx"
@@ -83,6 +83,17 @@ matrix:
8383
- make
8484
- make runtest
8585

86+
# osx build with openssl
87+
- os: osx
88+
env:
89+
- TEST="osx openssl"
90+
before_install:
91+
- brew install openssl
92+
script:
93+
- PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig EXTRA_CFLAGS=-Werror ./configure --enable-openssl
94+
- make
95+
- make runtest
96+
8697
# osx build with nss
8798
- os: osx
8899
env:

0 commit comments

Comments
 (0)