diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-08-31 20:08:03 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-08-31 20:13:26 +0200 |
commit | dc3cc0002c47c292e04a946172a2d9a26a024d41 (patch) | |
tree | 368eb5ed836b9292d6d7b6cbbdf032397d1efdc5 /.travis/linux/docker.sh | |
parent | Merge pull request #1205 from bunnei/improve-rasterizer-cache-2 (diff) | |
download | yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.tar yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.tar.gz yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.tar.bz2 yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.tar.lz yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.tar.xz yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.tar.zst yuzu-dc3cc0002c47c292e04a946172a2d9a26a024d41.zip |
Diffstat (limited to '.travis/linux/docker.sh')
-rwxr-xr-x | .travis/linux/docker.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh index d13ca50d8..459d6bc75 100755 --- a/.travis/linux/docker.sh +++ b/.travis/linux/docker.sh @@ -5,14 +5,8 @@ apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev cd /yuzu -export PATH=/usr/lib/ccache:$PATH -ln -sf /usr/bin/ccache /usr/lib/ccache/cc -ln -sf /usr/bin/ccache /usr/lib/ccache/c++ mkdir build && cd build -ccache --show-stats > ccache_before -cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON -G Ninja +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 ninja -ccache --show-stats > ccache_after -diff -U100 ccache_before ccache_after || true ctest -VV -C Release |