diff options
Diffstat (limited to '.travis/linux/docker.sh')
| -rwxr-xr-x | .travis/linux/docker.sh | 10 |
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 | ||
| 3 | apt-get update | 3 | apt-get update |
| 4 | apt-get install -y build-essential git libcurl4-openssl-dev libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget | 4 | apt-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 |
| 7 | wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh | 7 | wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh |
| 8 | sh cmake-3.10.1-Linux-x86_64.sh --exclude-subdir --prefix=/ --skip-license | 8 | sh cmake-3.10.1-Linux-x86_64.sh --exclude-subdir --prefix=/ --skip-license |
| 9 | 9 | ||
| 10 | mkdir /unicorn | ||
| 11 | cd /unicorn | ||
| 12 | git clone https://github.com/yuzu-emu/unicorn . | ||
| 13 | UNICORN_ARCHS=aarch64 ./make.sh | ||
| 14 | ./make.sh install | ||
| 15 | |||
| 16 | cd /yuzu | 10 | cd /yuzu |
| 17 | 11 | ||
| 18 | mkdir build && cd build | 12 | mkdir build && cd build |
| 19 | cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_BUILD_TYPE=Release | 13 | cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release |
| 20 | make -j4 | 14 | make -j4 |
| 21 | 15 | ||
| 22 | ctest -VV -C Release | 16 | ctest -VV -C Release |