summaryrefslogtreecommitdiff
path: root/.travis/linux/docker.sh
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2017-10-06 20:58:48 +0100
committerMerryMage <MerryMage@users.noreply.github.com>2017-10-07 12:10:03 +0100
commit15a2388a33b1306dcaf16b62432c7a13b40ca2a3 (patch)
tree6b1cf31a0e5a02359131d0d11f17b35a009e6a1e /.travis/linux/docker.sh
parent74d4050924e63f98c76570cafb5a6ad95d2ea5b1 (diff)
travis: Split build scripts for different platforms
This commit also separates clang-format from the linux build, closing #2702.
Diffstat (limited to '.travis/linux/docker.sh')
-rwxr-xr-x.travis/linux/docker.sh17
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 @@
+#!/bin/bash -ex
+
+cd /citra
+
+apt-get update
+apt-get install -y build-essential libsdl2-dev qtbase5-dev libqt5opengl5-dev libcurl4-openssl-dev libssl-dev wget git
+
+# Get a recent version of CMake
+wget https://cmake.org/files/v3.9/cmake-3.9.0-Linux-x86_64.sh
+echo y | sh cmake-3.9.0-Linux-x86_64.sh --prefix=cmake
+export PATH=/citra/cmake/cmake-3.9.0-Linux-x86_64/bin:$PATH
+
+mkdir build && cd build
+cmake .. -DUSE_SYSTEM_CURL=ON -DCMAKE_BUILD_TYPE=Release
+make -j4
+
+ctest -VV -C Release