From a6ec4092caa3d9f4569dec2fe6506b482d753da0 Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Wed, 17 Apr 2013 11:36:39 -0700 Subject: Adding the various SSL engines to travis build --- .travis.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 8daba29..c6962b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,12 +10,17 @@ compiler: # Settings to try env: + # OpenSSL - PRE_CONFIGURE=true CONFIGURE="cmake .. -DCMAKE_INSTALL_PREFIX=../_install" BUILD_INSTALL="cmake --build . --target install" + # gnutls + - PRE_CONFIGURE=true CONFIGURE="cmake .. -DSSL_ENGINE=GnuTLS -DCMAKE_INSTALL_PREFIX=../_install" BUILD_INSTALL="cmake --build . --target install" + # PolarSSL + - PRE_CONFIGURE=true CONFIGURE="cmake .. -DSSL_ENGINE=PolarSSL -DCMAKE_INSTALL_PREFIX=../_install" BUILD_INSTALL="cmake --build . --target install" - PRE_CONFIGURE="autoreconf -i" CONFIGURE="../configure --prefix=`pwd`/_install" BUILD_INSTALL="make install" - + # Make sure CMake is installed install: - - sudo apt-get install cmake libpopt-dev + - sudo apt-get install cmake libpopt-dev libpolarssl-dev libgnutls-dev # Run the Build script script: -- cgit v1.2.1