mirror of
https://github.com/libretro/pcsx2.git
synced 2025-02-11 04:15:59 +00:00
![Jonathan Li](/assets/img/avatar_default.png)
Travis CI now takes into account the environment variables when generating the cache hash. So the workaround of appending random unique stuff to "compiler" is now unnecessary.
37 lines
583 B
YAML
37 lines
583 B
YAML
language: cpp
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
cache: ccache
|
|
|
|
matrix:
|
|
include:
|
|
- env: VERSION=6 BITS=32
|
|
compiler: gcc
|
|
os: linux
|
|
- env: VERSION=5 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
|
|
- env: VERSION=4.9 BITS=64
|
|
compiler: gcc
|
|
os: linux
|
|
|
|
before_install:
|
|
- ./travis.sh before_install
|
|
|
|
before_script:
|
|
- ./travis.sh before_script
|
|
|
|
script:
|
|
- ./travis.sh script
|
|
|
|
after_success:
|
|
- ./travis.sh after_success
|