summaryrefslogtreecommitdiff
path: root/.travis/linux/docker.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/linux/docker.sh')
-rwxr-xr-x.travis/linux/docker.sh10
1 files changed, 2 insertions, 8 deletions
diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh
index a85225c5a..8a23b54b1 100755
--- a/.travis/linux/docker.sh
+++ b/.travis/linux/docker.sh
@@ -1,22 +1,16 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2 2
3apt-get update 3apt-get update
4apt-get install -y build-essential git libcurl4-openssl-dev libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget 4apt-get install -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget
5 5
6# Get a recent version of CMake 6# Get a recent version of CMake
7wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh 7wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh
8sh cmake-3.10.1-Linux-x86_64.sh --exclude-subdir --prefix=/ --skip-license 8sh cmake-3.10.1-Linux-x86_64.sh --exclude-subdir --prefix=/ --skip-license
9 9
10mkdir /unicorn
11cd /unicorn
12git clone https://github.com/yuzu-emu/unicorn .
13UNICORN_ARCHS=aarch64 ./make.sh
14./make.sh install
15
16cd /yuzu 10cd /yuzu
17 11
18mkdir build && cd build 12mkdir build && cd build
19cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_BUILD_TYPE=Release 13cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release
20make -j4 14make -j4
21 15
22ctest -VV -C Release 16ctest -VV -C Release