From: Jerome St-Louis Date: Sat, 22 Oct 2016 14:31:02 +0000 (-0400) Subject: .travis.yml: Prevent Travis failure notice on OSX X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?p=sdk;a=commitdiff_plain;h=65b15cf6ade830080eb43606702cf9b51aaaa4e6;ds=sidebyside .travis.yml: Prevent Travis failure notice on OSX - Also attempt to install openssl with brew --- 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