From 6324d86c716a19f7b60622731e88fa23227382f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Thu, 7 Jun 2018 21:42:12 +0200 Subject: [PATCH 1/4] Install cmake from repositories for Ubuntu Ubuntu 18.04 already has cmake 3.10.2 --- .travis/linux/docker.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh index bc541216c6..f4791171ec 100755 --- a/.travis/linux/docker.sh +++ b/.travis/linux/docker.sh @@ -1,11 +1,7 @@ #!/bin/bash -ex apt-get update -apt-get install -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget ninja-build - -# Get a recent version of CMake -wget https://cmake.org/files/v3.10/cmake-3.10.1-Linux-x86_64.sh -sh cmake-3.10.1-Linux-x86_64.sh --exclude-subdir --prefix=/ --skip-license +apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget cmake ninja-build cd /yuzu From 517112f5496d04e324d140c7056256ecb1ad10fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 4 Jun 2018 17:19:09 +0200 Subject: [PATCH 2/4] Add ccache support for Linux on Travis --- .travis/linux/build.sh | 2 +- .travis/linux/docker.sh | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis/linux/build.sh b/.travis/linux/build.sh index bea8981715..213feb25bf 100755 --- a/.travis/linux/build.sh +++ b/.travis/linux/build.sh @@ -1,3 +1,3 @@ #!/bin/bash -ex -docker run -v $(pwd):/yuzu ubuntu:18.04 /bin/bash /yuzu/.travis/linux/docker.sh +docker run -e CCACHE_DIR=/ccache -v $HOME/.ccache:/ccache -v $(pwd):/yuzu ubuntu:18.04 /bin/bash /yuzu/.travis/linux/docker.sh diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh index f4791171ec..376ad28ddb 100755 --- a/.travis/linux/docker.sh +++ b/.travis/linux/docker.sh @@ -1,12 +1,18 @@ #!/bin/bash -ex apt-get update -apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget cmake ninja-build +apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev wget cmake ninja-build ccache cd /yuzu +export PATH=/usr/lib/ccache:$PATH +ln -sf /usr/bin/ccache /usr/lib/ccache/cc +ln -sf /usr/bin/ccache /usr/lib/ccache/c++ mkdir build && cd build +ccache --show-stats > ccache_before cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release -G Ninja ninja +ccache --show-stats > ccache_after +diff -U100 ccache_before ccache_after || true ctest -VV -C Release From c0d3e2da4ec793e80568ea6334e1e4a8a1e49646 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 4 Jun 2018 17:19:45 +0200 Subject: [PATCH 3/4] Add ccache support for macOS on Travis --- .travis/macos/build.sh | 4 ++++ .travis/macos/deps.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis/macos/build.sh b/.travis/macos/build.sh index f633f618f5..5816b1d6e0 100755 --- a/.travis/macos/build.sh +++ b/.travis/macos/build.sh @@ -7,8 +7,12 @@ export Qt5_DIR=$(brew --prefix)/opt/qt5 export UNICORNDIR=$(pwd)/externals/unicorn mkdir build && cd build +export PATH=/usr/local/opt/ccache/libexec:$PATH +ccache --show-stats > ccache_before cmake --version cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_BUILD_TYPE=Release make -j4 +ccache --show-stats > ccache_after +diff -U100 ccache_before ccache_after || true ctest -VV -C Release diff --git a/.travis/macos/deps.sh b/.travis/macos/deps.sh index 3cd13a39b6..1a547c0608 100755 --- a/.travis/macos/deps.sh +++ b/.travis/macos/deps.sh @@ -1,5 +1,5 @@ #!/bin/sh -ex brew update -brew install dylibbundler p7zip qt5 sdl2 +brew install dylibbundler p7zip qt5 sdl2 ccache brew outdated cmake || brew upgrade cmake From f3885845fcc4db6d28713e6a45faca9c2d818d16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 4 Jun 2018 17:20:35 +0200 Subject: [PATCH 4/4] Cache ccache on Travis --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 6740ea2cf2..c225d4a2c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,3 +42,7 @@ notifications: webhooks: urls: - https://api.yuzu-emu.org/code/travis/notify + +cache: + directories: + - $HOME/.ccache