diff options
author | MerryMage <MerryMage@users.noreply.github.com> | 2016-05-19 19:54:50 +0200 |
---|---|---|
committer | MerryMage <MerryMage@users.noreply.github.com> | 2016-05-19 20:28:08 +0200 |
commit | 87de1ca96810eace7c3609d5b6ab7bfc93976c44 (patch) | |
tree | 7ef368cbab4aa45e9d5e06910a3b740c13cc8a9a /.travis-build.sh | |
parent | tests: Infrastructure for unit tests (diff) | |
download | yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.gz yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.bz2 yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.lz yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.xz yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.tar.zst yuzu-87de1ca96810eace7c3609d5b6ab7bfc93976c44.zip |
Diffstat (limited to '.travis-build.sh')
-rwxr-xr-x | .travis-build.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.travis-build.sh b/.travis-build.sh index e06a4299b..511df04ac 100755 --- a/.travis-build.sh +++ b/.travis-build.sh @@ -18,9 +18,16 @@ if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then mkdir build && cd build cmake -DCITRA_FORCE_QT4=ON .. make -j4 + + ctest -VV -C Release elif [ "$TRAVIS_OS_NAME" = "osx" ]; then + set -o pipefail + export Qt5_DIR=$(brew --prefix)/opt/qt5 + mkdir build && cd build cmake .. -GXcode - xcodebuild -configuration Release | xcpretty -c && exit ${PIPESTATUS[0]} + xcodebuild -configuration Release | xcpretty -c + + ctest -VV -C Release fi |