mirror of https://github.com/PCSX2/pcsx2.git
29 lines
522 B
YAML
29 lines
522 B
YAML
language: cpp
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
matrix:
|
|
include:
|
|
# Version 5 seems to be whatever is latest - for now it's 5.3
|
|
- env: VERSION=5 BITS=32
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=4.9 BITS=32
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=3.7 BITS=32
|
|
compiler: clang
|
|
os: linux
|
|
- env: VERSION=4.9 BITS=64
|
|
compiler: gcc
|
|
os: linux
|
|
allow_failures:
|
|
- env: VERSION=4.9 BITS=64
|
|
|
|
before_install:
|
|
- ./travis.sh before_install
|
|
|
|
script:
|
|
- ./travis.sh script
|