diff options
Diffstat (limited to '.travis/linux/docker.sh')
| -rwxr-xr-x | .travis/linux/docker.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh new file mode 100755 index 000000000..e27af5600 --- /dev/null +++ b/.travis/linux/docker.sh | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #!/bin/bash -ex | ||
| 2 | |||
| 3 | cd /citra | ||
| 4 | |||
| 5 | apt-get update | ||
| 6 | apt-get install -y build-essential libsdl2-dev qtbase5-dev libqt5opengl5-dev libcurl4-openssl-dev libssl-dev wget git | ||
| 7 | |||
| 8 | # Get a recent version of CMake | ||
| 9 | wget https://cmake.org/files/v3.9/cmake-3.9.0-Linux-x86_64.sh | ||
| 10 | echo y | sh cmake-3.9.0-Linux-x86_64.sh --prefix=cmake | ||
| 11 | export PATH=/citra/cmake/cmake-3.9.0-Linux-x86_64/bin:$PATH | ||
| 12 | |||
| 13 | mkdir build && cd build | ||
| 14 | cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_BUILD_TYPE=Release | ||
| 15 | make -j4 | ||
| 16 | |||
| 17 | ctest -VV -C Release | ||