Skip to content

Commit

Permalink
Travis: Run CI on Mac OS X and clang
Browse files Browse the repository at this point in the history
  • Loading branch information
hroncok committed Mar 29, 2016
1 parent 97fcf93 commit cef36cd
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .travis.yml
@@ -1,10 +1,19 @@
language: c
compiler: gcc
matrix:
include:
- compiler: gcc
os: linux
env: EXTRA=--enable-werror
- compiler: clang
os: linux
- compiler: clang
os: osx

script:
- ./autogen.sh
- ./configure --enable-werror
- ./configure $EXTRA
- make
- cd .libs
- export LD_LIBRARY_PATH=.
- if [[ $TRAVIS_OS_NAME == linux ]]; then LD_LIBRARY_PATH=. && export LD_LIBRARY_PATH ; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then DYLD_LIBRARY_PATH=. && export DYLD_LIBRARY_PATH ; fi
- ./admesh ../block.stl

0 comments on commit cef36cd

Please sign in to comment.