mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
autobuild: test default build, with extra options, and mingw
This commit is contained in:
parent
166c417204
commit
4e5b84fe8f
2 changed files with 23 additions and 2 deletions
|
@ -3,11 +3,11 @@ compiler:
|
|||
- gcc
|
||||
- clang
|
||||
|
||||
script: make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4
|
||||
script: ./build-test.sh
|
||||
|
||||
before_install:
|
||||
- sudo apt-get update -qq
|
||||
- sudo apt-get install -qq libgl1-mesa-dev libsdl1.2-dev libvorbis-dev libfreetype6-dev
|
||||
- sudo apt-get install -qq libgl1-mesa-dev libsdl1.2-dev libvorbis-dev libfreetype6-dev mingw32
|
||||
|
||||
notifications:
|
||||
irc: "irc.freenode.org#ioquake3"
|
||||
|
|
21
build-test.sh
Executable file
21
build-test.sh
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/bin/sh
|
||||
|
||||
failed=0;
|
||||
|
||||
# Default Build
|
||||
(make) || failed=1;
|
||||
|
||||
# Test additional options
|
||||
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;
|
||||
|
||||
# Test mingw
|
||||
(exec ./cross-make-mingw.sh) || failed=1;
|
||||
|
||||
if [ $failed -eq 1 ]; then
|
||||
echo "Build failure.";
|
||||
else
|
||||
echo "All builds successful.";
|
||||
fi
|
||||
|
||||
exit $failed;
|
||||
|
Loading…
Reference in a new issue