1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Update .travis.yml

This commit is contained in:
Autechre 2020-07-01 06:50:44 +02:00 committed by GitHub
parent 3e2250b25f
commit ef18704d63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,6 +48,10 @@ matrix:
env: DISABLE_CDROM=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: DISABLE_VIDEO_LAYOUT=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: DISABLE_PATCH=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: DISABLE_CHEATS=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
env: DISABLE_THREADS=1 CC=gcc-8 CXX=g++-8
- compiler: gcc
@ -140,6 +144,14 @@ before_script:
if [ -n "$DISABLE_OVERLAY" ]; then
ARGS="$ARGS --disable-overlay"
fi
- |
if [ -n "$DISABLE_PATCH" ]; then
ARGS="$ARGS --disable-patch"
fi
- |
if [ -n "$DISABLE_CHEATS" ]; then
ARGS="$ARGS --disable-cheats"
fi
- |
if [ -n "$DISABLE_NETWORKING" ]; then
ARGS="$ARGS --disable-networking"