Skip to content

Commit

Permalink
travis.yml expanded to install llvm before before installing on osx see
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentvanhees committed Oct 5, 2019
1 parent c29fd47 commit 5e85b83
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ addons:
apt:
update: TRUE

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install llvm &&
export PATH="/usr/local/opt/llvm/bin:$PATH" &&
export LDFLAGS="-L/usr/local/opt/llvm/lib" &&
export CFLAGS="-I/usr/local/opt/llvm/include"; fi

r_packages:
- covr

Expand Down

0 comments on commit 5e85b83

Please sign in to comment.