mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-01-11 10:30:09 +00:00
Beef up CI build cases.
- Add addressing modes direct and memory banks. Signed-off-by: Ricky Zhang <rickyzhang@gmail.com>
This commit is contained in:
parent
16081b2878
commit
d30528795b
20
.travis.yml
20
.travis.yml
@ -8,12 +8,28 @@ matrix:
|
||||
compiler: gcc
|
||||
env :
|
||||
- SDL_MAJOR_VERSION=1
|
||||
- ADDRESSING_MODE=direct
|
||||
- os: linux
|
||||
dist: bionic
|
||||
sudo: required
|
||||
compiler: gcc
|
||||
env :
|
||||
- SDL_MAJOR_VERSION=1
|
||||
- ADDRESSING_MODE=banks
|
||||
- os: linux
|
||||
dist: bionic
|
||||
sudo: required
|
||||
compiler: gcc
|
||||
env :
|
||||
- SDL_MAJOR_VERSION=2
|
||||
- ADDRESSING_MODE=direct
|
||||
- os: linux
|
||||
dist: bionic
|
||||
sudo: required
|
||||
compiler: gcc
|
||||
env :
|
||||
- SDL_MAJOR_VERSION=2
|
||||
- ADDRESSING_MODE=banks
|
||||
|
||||
addons:
|
||||
apt:
|
||||
@ -28,10 +44,10 @@ script:
|
||||
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;
|
||||
./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;
|
||||
./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
|
||||
fi
|
||||
|
Loading…
x
Reference in New Issue
Block a user