mirror of
https://github.com/libretro/mgba.git
synced 2024-11-30 19:50:34 +00:00
ef82480a8b
trusty + clang + C++14 is non-operational and Travis is so bad that they're only concerned with whitelisting packages piecemeal instead of providing a usable product, or a modern LTS like xenial
17 lines
313 B
YAML
17 lines
313 B
YAML
language: c
|
|
sudo: required
|
|
matrix:
|
|
include:
|
|
- 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 -j2
|