Skip to content

Commit

Permalink
ci: target Xcode 11.6
Browse files Browse the repository at this point in the history
The default macOS image provided by Travis is no longer supported by
Homebrew.
  • Loading branch information
midchildan committed Mar 28, 2021
1 parent 7744f87 commit 677fb08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
- os: linux
dist: xenial
- os: osx
osx_image: xcode11.6

before_install:
- echo $PATH
Expand All @@ -24,7 +25,8 @@ before_install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then export PATH="/usr/bin:/usr/local/bin:$PATH"; fi

install:
- cmake .
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cmake .; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then cmake . -DCMAKE_C_COMPILER=/usr/bin/clang; fi
- make VERBOSE=1
- sudo make install

Expand Down

0 comments on commit 677fb08

Please sign in to comment.