Skip to content

Commit 0bcf298

Browse files
committed
Don't try gcc on macOS.
1 parent ed1ac6a commit 0bcf298

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
language: c
22

3-
os:
4-
- linux
5-
- osx
3+
matrix:
4+
include:
5+
- os: linux
6+
compiler: gcc
7+
- os: linux
8+
compiler: clang
9+
- os: osx
10+
compiler: clang
611

712
addons:
813
apt:
@@ -16,10 +21,6 @@ addons:
1621
#before_install:
1722
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install cmake; fi
1823

19-
compiler:
20-
- clang
21-
- gcc
22-
2324
# Build with Debug and Release to flush out build problems
2425
script:
2526
- mkdir Debug

0 commit comments

Comments
 (0)