2014-07-02 12:05:42 +00:00
|
|
|
language: cpp
|
2015-12-22 17:20:43 +00:00
|
|
|
|
2016-03-07 10:47:00 +00:00
|
|
|
sudo: false
|
2015-12-22 17:20:43 +00:00
|
|
|
|
2017-11-26 02:46:37 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- SCONS_CACHE=$HOME/.scons_cache
|
2017-11-27 13:43:00 +00:00
|
|
|
- SCONS_CACHE_LIMIT=1024
|
2017-11-26 02:46:37 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $SCONS_CACHE
|
2015-12-22 17:20:43 +00:00
|
|
|
|
|
|
|
matrix:
|
2017-03-19 11:54:11 +00:00
|
|
|
include:
|
|
|
|
- env: STATIC_CHECKS=yes
|
2017-11-12 23:02:47 +00:00
|
|
|
os: linux
|
|
|
|
compiler: clang
|
2017-11-27 13:43:00 +00:00
|
|
|
- env: GODOT_TARGET=x11 TOOLS=yes CACHE_NAME=${GODOT_TARGET}-gcc-tools
|
2017-11-12 23:02:47 +00:00
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
2017-11-27 13:43:00 +00:00
|
|
|
#- env: GODOT_TARGET=x11 TOOLS=no CACHE_NAME=${GODOT_TARGET}-clang
|
2017-11-12 23:02:47 +00:00
|
|
|
# os: linux
|
|
|
|
# compiler: clang
|
2017-11-27 13:43:00 +00:00
|
|
|
#- env: GODOT_TARGET=windows TOOLS=yes CACHE_NAME=${GODOT_TARGET}-gcc-tools
|
2017-11-12 23:02:47 +00:00
|
|
|
# os: linux
|
|
|
|
# compiler: gcc
|
2017-11-27 13:43:00 +00:00
|
|
|
- env: GODOT_TARGET=android TOOLS=no CACHE_NAME=${GODOT_TARGET}-gcc
|
2017-11-12 23:02:47 +00:00
|
|
|
os: linux
|
|
|
|
compiler: gcc
|
2017-12-06 18:25:17 +00:00
|
|
|
#- env: GODOT_TARGET=osx TOOLS=yes CACHE_NAME=${GODOT_TARGET}-clang-tools
|
|
|
|
# os: osx
|
|
|
|
# compiler: clang
|
2017-11-27 13:43:00 +00:00
|
|
|
#- env: GODOT_TARGET=iphone TOOLS=no CACHE_NAME=${GODOT_TARGET}-clang
|
2017-11-12 23:02:47 +00:00
|
|
|
# os: osx
|
|
|
|
# compiler: clang
|
2015-12-22 17:20:43 +00:00
|
|
|
|
2016-03-07 10:47:00 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
2017-03-19 11:54:11 +00:00
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2017-12-06 20:34:40 +00:00
|
|
|
- llvm-toolchain-trusty-5.0
|
2016-03-07 10:47:00 +00:00
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
- scons
|
|
|
|
- pkg-config
|
|
|
|
- libx11-dev
|
|
|
|
- libxcursor-dev
|
|
|
|
- libasound2-dev
|
|
|
|
- libfreetype6-dev
|
|
|
|
- libgl1-mesa-dev
|
|
|
|
- libglu1-mesa-dev
|
|
|
|
- libssl-dev
|
|
|
|
- libxinerama-dev
|
2016-06-09 16:54:06 +00:00
|
|
|
- libxrandr-dev
|
2017-12-07 06:24:50 +00:00
|
|
|
- libxi-dev
|
2016-03-07 10:47:00 +00:00
|
|
|
|
2017-03-19 11:54:11 +00:00
|
|
|
# For style checks.
|
2017-12-06 20:34:40 +00:00
|
|
|
- clang-format-5.0
|
2017-03-19 11:54:11 +00:00
|
|
|
|
2017-11-12 23:02:47 +00:00
|
|
|
install:
|
|
|
|
- if [ "$TRAVIS_OS_NAME" = "linux" ] && [ "$GODOT_TARGET" = "android" ]; then
|
|
|
|
misc/travis/android-tools-linux.sh;
|
|
|
|
fi
|
|
|
|
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
|
|
|
misc/travis/scons-local-osx.sh;
|
|
|
|
fi
|
|
|
|
- if [ "$TRAVIS_OS_NAME" = "osx" ] && [ "$GODOT_TARGET" = "android" ]; then
|
|
|
|
misc/travis/android-tools-osx.sh;
|
|
|
|
fi
|
2015-12-22 17:20:43 +00:00
|
|
|
|
|
|
|
before_script:
|
2017-11-12 23:02:47 +00:00
|
|
|
- if [ "$GODOT_TARGET" = "android" ]; then
|
|
|
|
export ANDROID_HOME=$TRAVIS_BUILD_DIR/godot-dev/build-tools/android-sdk;
|
|
|
|
export ANDROID_NDK_ROOT=$TRAVIS_BUILD_DIR/godot-dev/build-tools/android-ndk;
|
2016-05-13 09:17:14 +00:00
|
|
|
fi
|
2015-12-22 17:20:43 +00:00
|
|
|
|
|
|
|
script:
|
2017-03-19 11:54:11 +00:00
|
|
|
- if [ "$STATIC_CHECKS" = "yes" ]; then
|
|
|
|
sh ./misc/travis/clang-format.sh;
|
|
|
|
else
|
2017-11-27 13:43:00 +00:00
|
|
|
scons -j 2 platform=$GODOT_TARGET CXX=$CXX builtin_openssl=yes verbose=yes progress=no;
|
2017-03-19 11:54:11 +00:00
|
|
|
fi
|