Skip to content

Commit

Permalink
Adding .travis.yml using clang for MacOSX
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsan committed Oct 14, 2019
1 parent 08cc612 commit 11ecd0b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
os: osx
osx_image: xcode10.2
language: cpp
script:
- brew update-reset && brew update --merge
- brew upgrade cmake
- brew install flex
- brew install make
- brew install -cc=clang llvm@8
- export PATH="/usr/local/opt/llvm@8/bin:$PATH:/usr/local/lib:/usr/local/opt/llvm/bin"
- export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig:/usr/local/lib"
- mkdir build && cd build
- cmake -DCMAKE_CXX_COMPILER="clang++" ..
- make && make test
before_cache:
- brew cleanup
cache:
directories:
- /usr/local/Homebrew
- $HOME/Library/Caches/Homebrew

0 comments on commit 11ecd0b

Please sign in to comment.