diff options
author | bunnei <bunneidev@gmail.com> | 2016-05-21 16:15:13 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-05-21 16:15:13 +0200 |
commit | 5edff287b6da2821424e94d0ec48a00db2f7d944 (patch) | |
tree | 8236ee8438948f3612bf9fd9f7932449fff1567b /.travis-build.sh | |
parent | Merge pull request #1816 from JayFoxRox/refactor-tev-dump (diff) | |
parent | Tests: Run tests on CI (diff) | |
download | yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.tar yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.tar.gz yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.tar.bz2 yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.tar.lz yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.tar.xz yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.tar.zst yuzu-5edff287b6da2821424e94d0ec48a00db2f7d944.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 |