mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-11 10:30:09 +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 :
|
env :
|
||||||
- SDL_MAJOR_VERSION=2
|
- SDL_MAJOR_VERSION=2
|
||||||
- ADDRESSING_MODE=banks
|
- ADDRESSING_MODE=banks
|
||||||
|
- os: osx
|
||||||
|
compiler: clang
|
||||||
|
osx_image: xcode12
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
@ -37,12 +40,17 @@ addons:
|
|||||||
- libsdl1.2-dev
|
- libsdl1.2-dev
|
||||||
- libgtk2.0-dev
|
- libgtk2.0-dev
|
||||||
- libsdl2-dev
|
- libsdl2-dev
|
||||||
|
homebrew:
|
||||||
|
packages:
|
||||||
|
- sdl2
|
||||||
|
- autoconf
|
||||||
|
- make
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- ERR_CODE=0
|
- ERR_CODE=0
|
||||||
|
- cd BasiliskII/src/Unix
|
||||||
|
- NO_CONFIGURE=1 ./autogen.sh
|
||||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||||
cd BasiliskII/src/Unix;
|
|
||||||
NO_CONFIGURE=1 ./autogen.sh;
|
|
||||||
if [[ $SDL_MAJOR_VERSION == *"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;
|
./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=$?;
|
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;
|
./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=$?;
|
make -j 4 || ERR_CODE=$?;
|
||||||
fi
|
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
|
fi
|
||||||
- (exit $ERR_CODE)
|
- (exit $ERR_CODE)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user