mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-02 15:16:32 +00:00
332995096b
Build with gcc-5 (whatever the ubuntu toolchain ppa uses - currently gcc-5.2), gcc-4.9 and clang-3.7. Instead of adding everything into the yml file, I've split off most of the work into a separate shell script. It's easier to maintain and extend that way, and Travis CI also recommends to do it this way.
24 lines
382 B
YAML
24 lines
382 B
YAML
language: cpp
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
matrix:
|
|
include:
|
|
# Version 5 seems to be whatever is latest - for now it's 5.2
|
|
- env: VERSION=5
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=4.9
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=3.7
|
|
compiler: clang
|
|
os: linux
|
|
|
|
before_install:
|
|
- ./travis.sh before_install
|
|
|
|
script:
|
|
- ./travis.sh script
|