mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
3e42aae5b0
Add a 'no_assets' option to Qt that allows building without pre-compiled assets inside the binary. GCC has issues with high memory usage when compiling the assets file, so this is used as a workaround for Travis.
88 lines
3.5 KiB
YAML
88 lines
3.5 KiB
YAML
# https://travis-ci.org
|
|
|
|
language: cpp
|
|
|
|
env:
|
|
- PPSSPP_BUILD_TYPE=Linux
|
|
CMAKE=TRUE
|
|
- PPSSPP_BUILD_TYPE=Android
|
|
- PPSSPP_BUILD_TYPE=Blackberry
|
|
CMAKE=TRUE
|
|
- PPSSPP_BUILD_TYPE=Symbian
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
matrix:
|
|
include:
|
|
- compiler: clang
|
|
env: PPSSPP_BUILD_TYPE=Linux
|
|
CMAKE=TRUE
|
|
|
|
before_install:
|
|
- git submodule update --init --recursive
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install aria2 -qq
|
|
- download_extract() { aria2c -x 16 $1 -o $2 && tar -xf $2; }
|
|
# Travis uses CMake 2.8.7. We require 2.8.8. Grab latest
|
|
- if [ "$CMAKE" == "TRUE" ]; then
|
|
sudo apt-get install lib32stdc++6 lib32z1 lib32z1-dev -qq &&
|
|
aria2c -x 16 http://www.cmake.org/files/v2.8/cmake-2.8.12.2-Linux-i386.sh &&
|
|
chmod a+x cmake-2.8.12.2-Linux-i386.sh &&
|
|
sudo ./cmake-2.8.12.2-Linux-i386.sh --skip-license --prefix=/usr;
|
|
fi
|
|
|
|
install:
|
|
# Ubuntu Linux + GCC 4.8
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Linux" ]; then
|
|
sudo apt-get install libsdl1.2-dev -qq &&
|
|
if [[ "$CXX" == g++ ]]; then
|
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y &&
|
|
sudo apt-get update &&
|
|
sudo apt-get install g++-4.8 -qq &&
|
|
export CXX="g++-4.8" CC="gcc-4.8";
|
|
fi;
|
|
fi
|
|
# Android NDK + GCC 4.8
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Android" ]; then
|
|
NDK_VER=android-ndk-r9d &&
|
|
sudo apt-get install ant -qq &&
|
|
download_extract http://dl.google.com/android/ndk/${NDK_VER}-linux-x86_64.tar.bz2 ${NDK_VER}-linux-x86_64.tar.bz2 &&
|
|
export ANDROID_HOME=$(pwd)/${NDK_VER} NDK=$(pwd)/${NDK_VER} &&
|
|
if [[ "$CXX" == *clang* ]]; then export NDK_TOOLCHAIN_VERSION=clang; fi;
|
|
fi
|
|
# Blackberry NDK: 10.3.0.440 + GCC: 4.8.2
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Blackberry" ]; then
|
|
download_extract http://downloads.blackberry.com/upr/developers/update/bbndk/10_3_beta/ndktarget_10.3.0.440/ndktargetrepo_10.3.0.440/packages/bbndk.linux.libraries.10.3.0.440.tar.gz libs.tar.gz &&
|
|
download_extract http://downloads.blackberry.com/upr/developers/update/bbndk/10_3_beta/ndktarget_10.3.0.440/ndktargetrepo_10.3.0.440/packages/bbndk.linux.tools.10.3.0.2702.tar.gz tools.tar.gz &&
|
|
sed -i 's/-g../&-4.8.2/g' Blackberry/bb.toolchain.cmake &&
|
|
export QNX_TARGET="$(pwd)/target_10_3_0_440/qnx6" QNX_HOST="$(pwd)/host_10_3_0_2702/linux/x86" && PATH="$QNX_HOST/usr/bin:$PATH";
|
|
fi
|
|
# Symbian NDK: Belle + GCC: 4.8.3
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Symbian" ]; then
|
|
sudo apt-get install lib32stdc++6 lib32bz2-1.0 -qq &&
|
|
download_extract https://github.com/xsacha/SymbianGCC/releases/download/4.8.3/gcc4.8.3_x86-64.tar.bz2 compiler.tar.bz2 &&
|
|
download_extract https://github.com/xsacha/SymbianGCC/releases/download/4.8.3/ndk.tar.bz2 ndk.tar.bz2 &&
|
|
export EPOCROOT=$(pwd)/SDKs/SymbianSR1Qt474/ SBS_GCCE483BIN=$(pwd)/gcc4.8.3_x86-64/bin &&
|
|
cp ffmpeg/symbian/armv6/lib/* $EPOCROOT/epoc32/release/armv5/urel/ &&
|
|
PATH=$SBS_GCCE483BIN:$(pwd)/tools/sbs/bin:$EPOCROOT/epoc32/tools:$EPOCROOT/bin:$(pwd)/tools/sbs/linux-x86_64-libc2_15/bin:$PATH;
|
|
fi
|
|
|
|
script:
|
|
# Compile PPSSPP
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Linux" ]; then
|
|
./b.sh --headless;
|
|
fi
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Android" ]; then
|
|
pushd android && ./ab.sh && popd;
|
|
fi
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Blackberry" ]; then
|
|
./b.sh --release --no-package;
|
|
fi
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Symbian" ]; then
|
|
QMAKE_ARGS="CONFIG+=no_assets" ./b.sh --debug --no-package;
|
|
fi
|
|
|
|
after_success:
|
|
- if [ "$PPSSPP_BUILD_TYPE" == "Linux" ]; then ./test.py; fi
|