Skip to content

Commit

Permalink
draco: Update Travis config.
Browse files Browse the repository at this point in the history
- Use default Xcode on osx images.
- Drop ccache usage.
  • Loading branch information
tomfinegan committed Sep 6, 2019
1 parent dd5aaf0 commit 5470f31
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,13 @@ matrix:
dist: xenial
compiler: gcc
- os: osx
osx_image: xcode8.3
compiler: clang

addons:
apt:
packages:
- ccache
- cmake

before_install:
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then brew update; fi
- if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then brew install ccache; fi

script:
# Output version info for compilers, cmake, and make
- ${CC} -v
Expand All @@ -32,6 +26,6 @@ script:
- pushd .. && git clone https://github.com/google/googletest.git && popd
# Configure and build
- mkdir _travis_build && cd _travis_build
- cmake -G "Unix Makefiles" -DENABLE_TESTS=ON -DENABLE_CCACHE=ON ..
- cmake -G "Unix Makefiles" -DENABLE_TESTS=ON ..
- make -j10
- ./draco_tests

0 comments on commit 5470f31

Please sign in to comment.