yuzu/.travis/linux/docker.sh

19 lines
553 B
Bash
Raw Normal View History

#!/bin/bash -ex
2017-08-04 11:11:47 +01:00
apt-get update
2018-06-04 16:19:09 +01:00
apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget cmake ninja-build ccache
2018-01-13 21:37:06 +00:00
cd /yuzu
2017-08-04 11:11:47 +01:00
2018-06-04 16:19:09 +01:00
export PATH=/usr/lib/ccache:$PATH
ln -sf /usr/bin/ccache /usr/lib/ccache/cc
ln -sf /usr/bin/ccache /usr/lib/ccache/c++
2017-08-04 11:11:47 +01:00
mkdir build && cd build
2018-06-04 16:19:09 +01:00
ccache --show-stats > ccache_before
2018-05-28 10:34:47 +01:00
cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -G Ninja
ninja
2018-06-04 16:19:09 +01:00
ccache --show-stats > ccache_after
diff -U100 ccache_before ccache_after || true
2017-08-04 11:11:47 +01:00
ctest -VV -C Release