From b0bbe59b41f5132f6ad605f99b06e157b1f45ea5 Mon Sep 17 00:00:00 2001 From: Robbie Harwood Date: Mon, 6 May 2019 14:29:53 -0400 Subject: [PATCH] Add a Travis job to build with OpenSSL crypto [ghudson@mit.edu: simplified configure option passing] --- .travis-ci.sh | 2 +- .travis.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis-ci.sh b/.travis-ci.sh index 4e6e1b6a17..55f5e8ddf2 100644 --- a/.travis-ci.sh +++ b/.travis-ci.sh @@ -1,6 +1,6 @@ cd src autoreconf -./configure --enable-maintainer-mode --with-ldap +./configure --enable-maintainer-mode --with-ldap $CONFIGURE_OPTS make $MAKEVARS make check make distclean diff --git a/.travis.yml b/.travis.yml index f0938996b1..9eb736b082 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,10 @@ matrix: include: - compiler: clang env: MAKEVARS=CPPFLAGS=-Werror + - compiler: clang + env: + - MAKEVARS=CPPFLAGS=-Werror + - CONFIGURE_OPTS=--with-crypto-impl=openssl - compiler: gcc before_install: -- 2.47.2