[Scummvm-git-logs] scummvm master -> 027e41632f889095d9071843596697baba3867e9
ccawley2011
ccawley2011 at gmail.com
Fri Jun 21 17:05:42 CEST 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
027e41632f TRAVIS: Don't build with gcc on Mac OS X (#1692)
Commit: 027e41632f889095d9071843596697baba3867e9
https://github.com/scummvm/scummvm/commit/027e41632f889095d9071843596697baba3867e9
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2019-06-21T16:05:39+01:00
Commit Message:
TRAVIS: Don't build with gcc on Mac OS X (#1692)
* TRAVIS: Don't build with gcc on Mac OS X
gcc on Mac OS X is just a frontend for LLVM.
* TRAVIS: Fix building with clang on Linux
Changed paths:
.travis.yml
diff --git a/.travis.yml b/.travis.yml
index 1a47909..67b8568 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -51,13 +51,14 @@ branches:
only:
- master
-compiler:
- - gcc
- - clang
-
-os:
- - linux
- - osx
+matrix:
+ include:
+ - os: linux
+ compiler: gcc
+ - os: linux
+ compiler: clang
+ - os: osx
+ compiler: clang
dist: trusty
More information about the Scummvm-git-logs
mailing list