mirror of
https://github.com/UberGames/ioef.git
synced 2024-12-18 08:31:16 +00:00
Improve build-test.sh for non-travis-ci usage
This commit is contained in:
parent
a737d442a0
commit
97fc98d26b
1 changed files with 10 additions and 7 deletions
|
@ -9,9 +9,12 @@ failed=0;
|
||||||
make clean
|
make clean
|
||||||
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
||||||
|
|
||||||
# Test mingw (gcc)
|
# Test mingw
|
||||||
if [ "$CC" = "gcc" ]; then
|
if [ "$CC" = "clang" ]; then
|
||||||
# clear CC so script will set it.
|
# skip mingw if travis-ci clang build
|
||||||
|
echo "Skipping mingw build because there is no mingw clang compiler available.";
|
||||||
|
else
|
||||||
|
# clear CC so cross-make-mingw script will set it.
|
||||||
export CC=
|
export CC=
|
||||||
(exec ./cross-make-mingw.sh) || failed=1;
|
(exec ./cross-make-mingw.sh) || failed=1;
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue