1
0
Fork 0

TravisCI: Add osx builds

This commit is contained in:
peterbell10 2017-10-21 14:25:21 +01:00 committed by Mattes D
parent 0bacda3269
commit 4dce6a59aa
2 changed files with 27 additions and 3 deletions

View File

@ -1,10 +1,19 @@
language: cpp
sudo: false
os:
- linux
- osx
compiler:
- clang
- gcc
matrix:
exclude:
- os: osx
compiler: gcc
addons:
apt:
sources:
@ -13,6 +22,13 @@ addons:
- g++-4.8
- gdb
before_script:
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
brew update;
brew install gdb;
fi
script: ./CIbuild.sh
env:

View File

@ -14,17 +14,25 @@ fi
cmake . -DBUILD_TOOLS=1 -DSELF_TEST=1;
echo "Building..."
make -j 2;
make -j 2 test ARGS="-V";
cmake --build . -- -j 2;
ctest -j 2 -V;
# Create .gdbinit in home directory. Switches off the confirmation on quit
echo -e "define hook-quit\n\tset confirm off\nend\n" > ~/.gdbinit
echo "Testing..."
# OSX builds need sudo because gdb isn't signed
if [ "$TRAVIS_OS_NAME" = osx ]; then
GDB_COMMAND="sudo gdb"
else
GDB_COMMAND="gdb"
fi
cd Server/;
touch apiCheckFailed.flag
if [ "$TRAVIS_CUBERITE_BUILD_TYPE" != "COVERAGE" ]; then
gdb -return-child-result -ex run -ex "bt" -ex "info threads" -ex "thread apply all bt" -ex "quit" --args $CUBERITE_PATH << EOF
${GDB_COMMAND} -return-child-result -ex run -ex "bt" -ex "info threads" -ex "thread apply all bt" -ex "quit" --args $CUBERITE_PATH << EOF
load APIDump
apicheck
restart