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:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- "$HOME/.ccache"
|
- "$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
|
- env: BUILD_ENV=mac
|
||||||
language: cpp
|
language: cpp
|
||||||
os: osx
|
os: osx
|
||||||
|
|
Loading…
Reference in New Issue