mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
Use Brew to install OpenSSL on OS X
This commit is contained in:
parent
2d6e0d8eea
commit
e382b884d3
1 changed files with 11 additions and 4 deletions
15
.travis.yml
15
.travis.yml
|
|
@ -22,6 +22,10 @@ jobs:
|
|||
name: Clang on Linux, Amd64
|
||||
compiler: clang
|
||||
arch: amd64
|
||||
- os: osx
|
||||
name: Clang on OS X, Amd64
|
||||
compiler: clang
|
||||
arch: amd64
|
||||
- os: linux
|
||||
name: UBsan, GCC on Linux, Amd64
|
||||
compiler: gcc
|
||||
|
|
@ -46,10 +50,6 @@ jobs:
|
|||
arch: amd64
|
||||
dist: bionic
|
||||
env: TEST_ASAN=yes
|
||||
- os: osx
|
||||
name: Clang on OS X, Amd64
|
||||
compiler: clang
|
||||
arch: amd64
|
||||
- os: linux
|
||||
name: GCC on Linux, Aarch64
|
||||
compiler: gcc
|
||||
|
|
@ -71,6 +71,13 @@ jobs:
|
|||
arch: ppc64le
|
||||
dist: bionic
|
||||
|
||||
before_install:
|
||||
- |
|
||||
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
||||
brew update
|
||||
brew install openssl
|
||||
fi
|
||||
|
||||
script:
|
||||
- |
|
||||
if [ "$TEST_UBSAN" = "yes" ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue