mgba/.travis.yml
Vicki Pfau ef82480a8b Travis: Nuke the Linux clang build
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
2017-07-23 14:51:35 -07:00

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