mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-22 13:31:08 +00:00
7513fab5ad
Signed-off-by: Ricky Zhang <rickyzhang@gmail.com>
101 lines
2.6 KiB
YAML
101 lines
2.6 KiB
YAML
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: bionic
|
|
sudo: required
|
|
compiler: gcc
|
|
env :
|
|
- WITH_SDL=1
|
|
- SDL_MAJOR_VERSION=1
|
|
- ADDRESSING_MODE=direct
|
|
- os: linux
|
|
dist: bionic
|
|
sudo: required
|
|
compiler: gcc
|
|
env :
|
|
- WITH_SDL=1
|
|
- SDL_MAJOR_VERSION=1
|
|
- ADDRESSING_MODE=banks
|
|
- os: linux
|
|
dist: bionic
|
|
sudo: required
|
|
compiler: gcc
|
|
env :
|
|
- WITH_SDL=1
|
|
- SDL_MAJOR_VERSION=2
|
|
- ADDRESSING_MODE=direct
|
|
- os: linux
|
|
dist: bionic
|
|
sudo: required
|
|
compiler: gcc
|
|
env :
|
|
- WITH_SDL=1
|
|
- SDL_MAJOR_VERSION=2
|
|
- ADDRESSING_MODE=banks
|
|
- os: linux
|
|
dist: bionic
|
|
sudo: required
|
|
compiler: gcc
|
|
env :
|
|
- WITH_SDL=0
|
|
- ADDRESSING_MODE=direct
|
|
- os: linux
|
|
dist: bionic
|
|
sudo: required
|
|
compiler: gcc
|
|
env :
|
|
- WITH_SDL=0
|
|
- ADDRESSING_MODE=banks
|
|
- os: osx
|
|
compiler: clang
|
|
osx_image: xcode12
|
|
env :
|
|
- WITH_SDL=0
|
|
- os: osx
|
|
compiler: clang
|
|
osx_image: xcode12
|
|
env :
|
|
- WITH_SDL=1
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libsdl1.2-dev
|
|
- libgtk2.0-dev
|
|
- libsdl2-dev
|
|
homebrew:
|
|
packages:
|
|
- sdl2
|
|
- autoconf
|
|
- make
|
|
|
|
script:
|
|
- ERR_CODE=0
|
|
- cd BasiliskII/src/Unix
|
|
- NO_CONFIGURE=1 ./autogen.sh
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
if [[ $WITH_SDL == *"1"* ]]; then
|
|
if [[ $SDL_MAJOR_VERSION == *"1"* ]]; then
|
|
./configure --enable-sdl-video --enable-sdl-audio --disable-vosf --disable-jit-compiler --with-x --with-gtk --with-mon --enable-addressing=$ADDRESSING_MODE;
|
|
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 --enable-addressing=$ADDRESSING_MODE;
|
|
make -j 4 || ERR_CODE=$?;
|
|
fi
|
|
else
|
|
./configure --disable-jit-compiler --with-x --with-gtk --with-mon --enable-addressing=$ADDRESSING_MODE;
|
|
make -j 4 || ERR_CODE=$?;
|
|
fi
|
|
else
|
|
if [[ $WITH_SDL == *"1"* ]]; then
|
|
./configure --enable-sdl-video --enable-sdl-audio --disable-vosf --disable-jit-compiler --with-gtk=no --with-mon --with-sdl2 --enable-addressing=banks;
|
|
make -j 4 || ERR_CODE=$?;
|
|
else
|
|
./configure --disable-vosf --disable-jit-compiler --with-gtk=no --with-mon --enable-addressing=banks;
|
|
make -j 4 || ERR_CODE=$?;
|
|
fi
|
|
fi
|
|
- (exit $ERR_CODE)
|