diff options
author | tech4me <guiwanglong@gmail.com> | 2018-08-31 20:08:03 +0200 |
---|---|---|
committer | tech4me <guiwanglong@gmail.com> | 2018-09-19 20:22:14 +0200 |
commit | a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178 (patch) | |
tree | 92c57ae3f11b1f9ad5c7cdd76956c38b77984d44 /.travis/linux | |
parent | Merge pull request #1196 from FearlessTobi/ccache-consistency (diff) | |
download | yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.gz yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.bz2 yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.lz yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.xz yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.zst yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.zip |
Diffstat (limited to '.travis/linux')
-rwxr-xr-x | .travis/linux/docker.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh index 459d6bc75..892d2480a 100755 --- a/.travis/linux/docker.sh +++ b/.travis/linux/docker.sh @@ -6,7 +6,9 @@ apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev cd /yuzu mkdir build && cd build -cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -G Ninja +cmake .. -DYUZU_USE_BUNDLED_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/lib/ccache/gcc -DCMAKE_CXX_COMPILER=/usr/lib/ccache/g++ -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -G Ninja ninja +ccache -s + ctest -VV -C Release |