mirror of https://github.com/PCSX2/pcsx2.git
36 lines
568 B
YAML
36 lines
568 B
YAML
language: cpp
|
|
|
|
sudo: required
|
|
|
|
cache: ccache
|
|
|
|
matrix:
|
|
include:
|
|
- env: VERSION=7 BITS=64
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=7 BITS=32
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=6 BITS=32
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=4.9 BITS=32
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=3.8 BITS=32
|
|
compiler: clang
|
|
os: linux
|
|
|
|
before_install:
|
|
- ./travis.sh before_install
|
|
|
|
before_script:
|
|
- ./travis.sh before_script
|
|
|
|
script:
|
|
- ./travis.sh script
|
|
|
|
after_success:
|
|
- ./travis.sh after_success
|