macemu/.travis.yml
Ricky Zhang 9ef2f87adb
Add CI for SDL1 and SDL2.
Signed-off-by: Ricky Zhang <rickyzhang@gmail.com>
2020-06-27 00:17:25 -04:00

39 lines
960 B
YAML

language: cpp
matrix:
include:
- os: linux
dist: bionic
sudo: required
compiler: gcc
env :
- SDL_MAJOR_VERSION=1
- os: linux
dist: bionic
sudo: required
compiler: gcc
env :
- SDL_MAJOR_VERSION=2
addons:
apt:
packages:
- libsdl1.2-dev
- libgtk2.0-dev
- libsdl2-dev
script:
- ERR_CODE=0
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
cd BasiliskII/src/Unix;
NO_CONFIGURE=1 ./autogen.sh;
if [[ $SDL_MAJOR_VERSION == *"1"* ]]; then
./configure --enable-sdl-video --enable-sdl-audio --disable-vosf --disable-jit-compiler --with-x --with-gtk --with-mon;
make -j 4 || ERR_CODE=$?;
else
./configure --enable-sdl-video --enable-sdl-audio --disable-vosf --disable-jit-compiler --with-x --with-gtk --with-mon --with-sdl2;
make -j 4 || ERR_CODE=$?;
fi
fi
- (exit $ERR_CODE)