pcsx2/.travis.yml
Jonathan Li 5672d2b39e ci: Remove clang from Travis CI builds
llvm's apt repo is currently switched off so the builds are erroring
out.

[skip ci]
2016-06-01 18:05:00 +01:00

31 lines
492 B
YAML

language: cpp
sudo: required
dist: trusty
cache: ccache
matrix:
include:
- env: VERSION=6 BITS=32
compiler: gcc-6-32
os: linux
- env: VERSION=5 BITS=32
compiler: gcc-5-32
os: linux
- env: VERSION=4.9 BITS=32
compiler: gcc-4.9-32
os: linux
- env: VERSION=4.9 BITS=64
compiler: gcc-4.9-64
os: linux
before_install:
- ./travis.sh before_install
script:
- ./travis.sh script
after_success:
- ./travis.sh after_success