Add CI for SDL1 and SDL2.

Signed-off-by: Ricky Zhang <rickyzhang@gmail.com>
This commit is contained in:
Ricky Zhang 2020-06-27 00:01:36 -04:00
parent dc8bb7e2a3
commit 9ef2f87adb
No known key found for this signature in database
GPG Key ID: 681AFAEF6CDEDB4C
1 changed files with 24 additions and 6 deletions

View File

@ -3,18 +3,36 @@ language: cpp
matrix:
include:
- os: linux
dist: trusty
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
- libsdl1.2-dev
- libgtk2.0-dev
- libsdl2-dev
script:
- cd BasiliskII/src/Unix
- NO_CONFIGURE=1 ./autogen.sh
- ./configure --enable-sdl-video --enable-sdl-audio --disable-vosf --disable-jit-compiler --with-x --with-gtk --with-mon
- make -j 4
- 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)