diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-11-11 18:48:27 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-11-14 21:39:15 -0800 |
commit | 9c3a45af956dbf529a47e517771797d81df4a902 (patch) | |
tree | c7a9ce0a04405eed2021ab220ae6656959d3b65c /.travis.yml | |
parent | 65e65272ce297dbbece60860d9ffcab148dec5e6 (diff) | |
download | subsurface-9c3a45af956dbf529a47e517771797d81df4a902.tar.gz |
Travis: add Mac build
This adds a -skip-googlemaps option to the build script since for some
reason trying to build the googlemaps plugin in the Travis mac
environment causes an error with a missing stack-protector-strong
feature.
The build relies on a custom build Qt and a cached homebrew environment.
And the result is of course not a DMG with a signed app but a zip file
with an unsigned app - so it's a bit harder to consume.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index eac6dc385..c01c72d44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,12 @@ + matrix: include: + - env: SUBSURFACE_PLATFORM='mac' + os: osx + osx_image: xcode6.4 + language: c++ ruby + - env: SUBSURFACE_PLATFORM='windows' os: linux dist: trusty |