diff options
| author | 2018-08-31 20:08:03 +0200 | |
|---|---|---|
| committer | 2018-09-19 14:22:14 -0400 | |
| commit | a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178 (patch) | |
| tree | 92c57ae3f11b1f9ad5c7cdd76956c38b77984d44 /.travis/linux | |
| parent | Merge pull request #1196 from FearlessTobi/ccache-consistency (diff) | |
| download | yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.gz yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.tar.xz yuzu-a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178.zip | |
travis: running mingw build on travis ci
This commit also fixed a broken cmake dependency with unicorn
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 | |||
| 6 | cd /yuzu | 6 | cd /yuzu |
| 7 | 7 | ||
| 8 | mkdir build && cd build | 8 | mkdir build && cd build |
| 9 | 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 | 9 | 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 |
| 10 | ninja | 10 | ninja |
| 11 | 11 | ||
| 12 | ccache -s | ||
| 13 | |||
| 12 | ctest -VV -C Release | 14 | ctest -VV -C Release |