2014-05-19 03:28:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2014-12-16 00:00:37 +00:00
|
|
|
set -x
|
2014-05-19 03:28:50 +00:00
|
|
|
|
2015-05-25 18:28:17 +00:00
|
|
|
if grep -r '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \
|
|
|
|
dist/*.svg dist/*.xml; then
|
|
|
|
echo Trailing whitespace found, aborting
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2014-05-19 03:28:50 +00:00
|
|
|
#if OS is linux or is not set
|
2015-03-06 23:54:09 +00:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
|
2014-05-19 03:28:50 +00:00
|
|
|
mkdir build && cd build
|
2015-05-25 18:34:09 +00:00
|
|
|
cmake -DUSE_QT5=OFF ..
|
2014-05-19 03:28:50 +00:00
|
|
|
make -j4
|
2015-03-06 23:54:09 +00:00
|
|
|
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2014-11-15 20:05:30 +00:00
|
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
2014-05-19 03:28:50 +00:00
|
|
|
mkdir build && cd build
|
|
|
|
cmake .. -GXcode
|
2015-03-06 23:54:09 +00:00
|
|
|
xcodebuild -configuration Release
|
2014-05-19 03:28:50 +00:00
|
|
|
fi
|