From 65b15cf6ade830080eb43606702cf9b51aaaa4e6 Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Sat, 22 Oct 2016 10:31:02 -0400 Subject: [PATCH 1/1] .travis.yml: Prevent Travis failure notice on OSX - Also attempt to install openssl with brew --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4709166..ad910b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,8 @@ matrix: exclude: - os: osx compiler: gcc + allow_failures: + - os: osx addons: apt: @@ -37,5 +39,9 @@ addons: - libffi-dev - libasound2-dev +before_install: + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi + - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install openssl ; fi + script: - make -j1 V=1 ENABLE_SSL=y -- 1.8.3.1