mirror of
https://github.com/libretro/mgba.git
synced 2024-11-24 00:20:05 +00:00
ff0de9cae2
* .travis.yml: Use an explicitly defined build matrix. * Attempt to use GCC on Mac. * Add gcc4.8 to Travis deps. * Remove gcc set from .travis.yml. * .travis-deps: Install and set compiler to GCC only if we need it. * Formatting * Remove redundancy * .travis.yml: source the deps script.
20 lines
366 B
YAML
20 lines
366 B
YAML
language: c
|
|
sudo: required
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: clang
|
|
- os: linux
|
|
dist: trusty
|
|
compiler: gcc
|
|
- os: osx
|
|
compiler: clang
|
|
- os: osx
|
|
compiler: gcc
|
|
|
|
before_install:
|
|
- source ./.travis-deps.sh
|
|
|
|
script: mkdir build && cd build && cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/qt5 .. && make
|