summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2019-04-30 19:25:53 -0400
committerGravatar GitHub2019-04-30 19:25:53 -0400
commitfb420358a99fb4a27cb48fd0e21c5c3f3a477c0c (patch)
tree9912969d87ca50de573ca73d69e9560dfcf02121
parentMerge pull request #2100 from FreddyFunk/disk-cache-precompiled-file (diff)
parentGenerateSCMRev: fix Travis compilation on repo forks (diff)
downloadyuzu-fb420358a99fb4a27cb48fd0e21c5c3f3a477c0c.tar.gz
yuzu-fb420358a99fb4a27cb48fd0e21c5c3f3a477c0c.tar.xz
yuzu-fb420358a99fb4a27cb48fd0e21c5c3f3a477c0c.zip
Merge pull request #2406 from FearlessTobi/port-3839
Port citra-emu/citra#3839: "travis: use prebuilt image"
-rwxr-xr-x.travis/linux-mingw/build.sh2
-rwxr-xr-x.travis/linux-mingw/deps.sh2
-rwxr-xr-x.travis/linux-mingw/docker.sh10
-rwxr-xr-x.travis/linux/build.sh2
-rwxr-xr-x.travis/linux/deps.sh2
-rwxr-xr-x.travis/linux/docker.sh3
-rw-r--r--CMakeModules/GenerateSCMRev.cmake2
7 files changed, 5 insertions, 18 deletions
diff --git a/.travis/linux-mingw/build.sh b/.travis/linux-mingw/build.sh
index be03cc0f3..b12d70b12 100755
--- a/.travis/linux-mingw/build.sh
+++ b/.travis/linux-mingw/build.sh
@@ -1,3 +1,3 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2mkdir "$HOME/.ccache" || true 2mkdir "$HOME/.ccache" || true
3docker run --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache ubuntu:18.04 /bin/bash -ex /yuzu/.travis/linux-mingw/docker.sh 3docker run --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-mingw /bin/bash -ex /yuzu/.travis/linux-mingw/docker.sh
diff --git a/.travis/linux-mingw/deps.sh b/.travis/linux-mingw/deps.sh
index 540bb934a..55b5d6006 100755
--- a/.travis/linux-mingw/deps.sh
+++ b/.travis/linux-mingw/deps.sh
@@ -1,3 +1,3 @@
1#!/bin/sh -ex 1#!/bin/sh -ex
2 2
3docker pull ubuntu:18.04 3docker pull yuzuemu/build-environments:linux-mingw
diff --git a/.travis/linux-mingw/docker.sh b/.travis/linux-mingw/docker.sh
index 6cf43a006..b73a28693 100755
--- a/.travis/linux-mingw/docker.sh
+++ b/.travis/linux-mingw/docker.sh
@@ -1,16 +1,6 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2 2
3cd /yuzu 3cd /yuzu
4MINGW_PACKAGES="sdl2-mingw-w64 qt5base-mingw-w64 qt5tools-mingw-w64 libsamplerate-mingw-w64 qt5multimedia-mingw-w64"
5apt-get update
6apt-get install -y gpg wget git python3-pip python ccache g++-mingw-w64-x86-64 gcc-mingw-w64-x86-64 mingw-w64-tools cmake
7echo 'deb http://ppa.launchpad.net/tobydox/mingw-w64/ubuntu bionic main ' > /etc/apt/sources.list.d/extras.list
8apt-key adv --keyserver keyserver.ubuntu.com --recv '72931B477E22FEFD47F8DECE02FE5F12ADDE29B2'
9apt-get update
10apt-get install -y ${MINGW_PACKAGES}
11
12# fix a problem in current MinGW headers
13wget -q https://raw.githubusercontent.com/Alexpux/mingw-w64/d0d7f784833bbb0b2d279310ddc6afb52fe47a46/mingw-w64-headers/crt/errno.h -O /usr/x86_64-w64-mingw32/include/errno.h
14# override Travis CI unreasonable ccache size 4# override Travis CI unreasonable ccache size
15echo 'max_size = 3.0G' > "$HOME/.ccache/ccache.conf" 5echo 'max_size = 3.0G' > "$HOME/.ccache/ccache.conf"
16 6
diff --git a/.travis/linux/build.sh b/.travis/linux/build.sh
index 2fced727d..3929f97fc 100755
--- a/.travis/linux/build.sh
+++ b/.travis/linux/build.sh
@@ -1,4 +1,4 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2 2
3mkdir -p "$HOME/.ccache" 3mkdir -p "$HOME/.ccache"
4docker run -e ENABLE_COMPATIBILITY_REPORTING --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache ubuntu:18.04 /bin/bash /yuzu/.travis/linux/docker.sh 4docker run -e ENABLE_COMPATIBILITY_REPORTING --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache yuzuemu/build-environments:linux-fresh /bin/bash /yuzu/.travis/linux/docker.sh
diff --git a/.travis/linux/deps.sh b/.travis/linux/deps.sh
index 540bb934a..8d23c517d 100755
--- a/.travis/linux/deps.sh
+++ b/.travis/linux/deps.sh
@@ -1,3 +1,3 @@
1#!/bin/sh -ex 1#!/bin/sh -ex
2 2
3docker pull ubuntu:18.04 3docker pull yuzuemu/build-environments:linux-fresh
diff --git a/.travis/linux/docker.sh b/.travis/linux/docker.sh
index 8b7e65911..a21a8f9e2 100755
--- a/.travis/linux/docker.sh
+++ b/.travis/linux/docker.sh
@@ -1,8 +1,5 @@
1#!/bin/bash -ex 1#!/bin/bash -ex
2 2
3apt-get update
4apt-get install --no-install-recommends -y build-essential git libqt5opengl5-dev libsdl2-dev libssl-dev python qtbase5-dev qtwebengine5-dev wget cmake ninja-build ccache
5
6cd /yuzu 3cd /yuzu
7 4
8mkdir build && cd build 5mkdir build && cd build
diff --git a/CMakeModules/GenerateSCMRev.cmake b/CMakeModules/GenerateSCMRev.cmake
index 08315a1f1..5e00d839f 100644
--- a/CMakeModules/GenerateSCMRev.cmake
+++ b/CMakeModules/GenerateSCMRev.cmake
@@ -19,7 +19,7 @@ set(BUILD_VERSION "0")
19if (BUILD_REPOSITORY) 19if (BUILD_REPOSITORY)
20 # regex capture the string nightly or canary into CMAKE_MATCH_1 20 # regex capture the string nightly or canary into CMAKE_MATCH_1
21 string(REGEX MATCH "yuzu-emu/yuzu-?(.*)" OUTVAR ${BUILD_REPOSITORY}) 21 string(REGEX MATCH "yuzu-emu/yuzu-?(.*)" OUTVAR ${BUILD_REPOSITORY})
22 if (${CMAKE_MATCH_COUNT} GREATER 0) 22 if ("${CMAKE_MATCH_COUNT}" GREATER 0)
23 # capitalize the first letter of each word in the repo name. 23 # capitalize the first letter of each word in the repo name.
24 string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1}) 24 string(REPLACE "-" ";" REPO_NAME_LIST ${CMAKE_MATCH_1})
25 foreach(WORD ${REPO_NAME_LIST}) 25 foreach(WORD ${REPO_NAME_LIST})