.travis.yml: Prevent Travis failure notice on OSX
authorJerome St-Louis <jerome@ecere.com>
Sat, 22 Oct 2016 14:31:02 +0000 (10:31 -0400)
committerJerome St-Louis <jerome@ecere.com>
Sat, 22 Oct 2016 15:13:32 +0000 (11:13 -0400)
- Also attempt to install openssl with brew

.travis.yml

index 4709166..ad910b4 100644 (file)
@@ -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