summaryrefslogtreecommitdiff
path: root/.travis/linux
diff options
context:
space:
mode:
authorGravatar tech4me2018-08-31 20:08:03 +0200
committerGravatar tech4me2018-09-19 14:22:14 -0400
commita8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178 (patch)
tree92c57ae3f11b1f9ad5c7cdd76956c38b77984d44 /.travis/linux
parentMerge pull request #1196 from FearlessTobi/ccache-consistency (diff)
downloadyuzu-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.sh4
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
6cd /yuzu 6cd /yuzu
7 7
8mkdir build && cd build 8mkdir build && cd build
9cmake .. -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 9cmake .. -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
10ninja 10ninja
11 11
12ccache -s
13
12ctest -VV -C Release 14ctest -VV -C Release