diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2017-04-18 20:21:35 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2017-04-20 12:53:08 +0200 |
commit | 4809781586d1c956005f72946a2aab5915eab350 (patch) | |
tree | b848323193088cb1e032d0978acb1f8ddaa4649f /.travis.yml | |
parent | 5352802da81f2083e65d466612e639a4e6e5530e (diff) | |
download | ffmpeg-4809781586d1c956005f72946a2aab5915eab350.tar.gz |
travis: Exclude gcc for the macOS target
On a normal macOS setup, 'gcc' is a symlink to clang. Therefore there is
little point in running the tests twice, with CC=gcc and CC=clang.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 6f9647a701..5aa2802636 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,10 @@ addons: compiler: - clang - gcc +matrix: + exclude: + - os: osx + compiler: gcc cache: directories: - libav-samples |