travis: add job for libretro module
Add a job to test compiling the libretro module to the matrix.
This commit is contained in:
parent
ef8c89fce0
commit
c63d364058
13
.travis.yml
13
.travis.yml
|
@ -47,6 +47,19 @@ matrix:
|
|||
cache:
|
||||
directories:
|
||||
- "$HOME/.ccache"
|
||||
- env: BUILD_ENV=libretro
|
||||
language: cpp
|
||||
os: linux
|
||||
dist: trusty
|
||||
before_install:
|
||||
- sudo apt-get -qqy update
|
||||
- sudo apt-get -qqy install build-essential ccache
|
||||
script:
|
||||
- cd src/libretro
|
||||
- make -j2 CXX="ccache g++" CC="ccache gcc"
|
||||
cache:
|
||||
directories:
|
||||
- "$HOME/.ccache"
|
||||
- env: BUILD_ENV=mac
|
||||
language: cpp
|
||||
os: osx
|
||||
|
|
Loading…
Reference in New Issue