mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-23 04:30:10 +00:00
Add Mac OS X CI.
Signed-off-by: Ricky Zhang <rickyzhang@gmail.com>
This commit is contained in:
parent
d30528795b
commit
0b38469385
15
.travis.yml
15
.travis.yml
@ -30,6 +30,9 @@ matrix:
|
||||
env :
|
||||
- SDL_MAJOR_VERSION=2
|
||||
- ADDRESSING_MODE=banks
|
||||
- os: osx
|
||||
compiler: clang
|
||||
osx_image: xcode12
|
||||
|
||||
addons:
|
||||
apt:
|
||||
@ -37,12 +40,17 @@ addons:
|
||||
- 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
|
||||
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 --enable-addressing=$ADDRESSING_MODE;
|
||||
make -j 4 || ERR_CODE=$?;
|
||||
@ -50,5 +58,8 @@ script:
|
||||
./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 --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=$?;
|
||||
fi
|
||||
- (exit $ERR_CODE)
|
||||
|
Loading…
Reference in New Issue
Block a user