Use Brew to install OpenSSL on OS X

This commit is contained in:
Jeffrey Walton 2020-02-27 10:52:58 -05:00
parent 2d6e0d8eea
commit e382b884d3
No known key found for this signature in database
GPG key ID: B36AB348921B1838

View file

@ -22,6 +22,10 @@ jobs:
name: Clang on Linux, Amd64 name: Clang on Linux, Amd64
compiler: clang compiler: clang
arch: amd64 arch: amd64
- os: osx
name: Clang on OS X, Amd64
compiler: clang
arch: amd64
- os: linux - os: linux
name: UBsan, GCC on Linux, Amd64 name: UBsan, GCC on Linux, Amd64
compiler: gcc compiler: gcc
@ -46,10 +50,6 @@ jobs:
arch: amd64 arch: amd64
dist: bionic dist: bionic
env: TEST_ASAN=yes env: TEST_ASAN=yes
- os: osx
name: Clang on OS X, Amd64
compiler: clang
arch: amd64
- os: linux - os: linux
name: GCC on Linux, Aarch64 name: GCC on Linux, Aarch64
compiler: gcc compiler: gcc
@ -71,6 +71,13 @@ jobs:
arch: ppc64le arch: ppc64le
dist: bionic dist: bionic
before_install:
- |
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew update
brew install openssl
fi
script: script:
- | - |
if [ "$TEST_UBSAN" = "yes" ]; then if [ "$TEST_UBSAN" = "yes" ]; then