2014-07-02 12:05:42 +00:00
|
|
|
language: cpp
|
2015-12-22 17:20:43 +00:00
|
|
|
|
2018-05-25 10:25:11 +00:00
|
|
|
dist: trusty
|
|
|
|
|
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
|
2018-05-25 10:25:11 +00:00
|
|
|
- OPTIONS="verbose=yes progress=no"
|
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
|
2018-05-25 10:25:11 +00:00
|
|
|
compiler: gcc
|
2020-08-13 21:02:49 +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
|
2020-08-13 21:02:49 +00:00
|
|
|
- env: GODOT_TARGET=x11 TOOLS=no CACHE_NAME=${GODOT_TARGET}-clang
|
2018-05-25 10:25:11 +00:00
|
|
|
os: linux
|
|
|
|
compiler: clang
|
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
|
2018-05-25 10:25:11 +00:00
|
|
|
- env: GODOT_TARGET=osx TOOLS=yes CACHE_NAME=${GODOT_TARGET}-clang-tools
|
|
|
|
os: osx
|
2020-08-14 12:59:39 +00:00
|
|
|
osx_image: xcode11.6
|
2018-05-25 10:25:11 +00:00
|
|
|
compiler: clang
|
|
|
|
- env: GODOT_TARGET=iphone TOOLS=no CACHE_NAME=${GODOT_TARGET}-clang
|
|
|
|
os: osx
|
2020-08-14 12:59:39 +00:00
|
|
|
osx_image: xcode11.6
|
2018-05-25 10:25:11 +00:00
|
|
|
compiler: clang
|
2020-08-14 10:57:46 +00:00
|
|
|
- env: GODOT_TARGET=server TOOLS=no CACHE_NAME=${GODOT_TARGET}-clang
|
2018-05-25 10:25:11 +00:00
|
|
|
os: linux
|
|
|
|
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
|
2020-08-13 21:02:49 +00:00
|
|
|
- llvm-toolchain-trusty-8
|
2016-03-07 10:47:00 +00:00
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
- scons
|
|
|
|
- pkg-config
|
|
|
|
- libx11-dev
|
|
|
|
- libxcursor-dev
|
2018-05-25 10:25:11 +00:00
|
|
|
- libxi-dev
|
|
|
|
- libxinerama-dev
|
|
|
|
- libxrandr-dev
|
2016-03-07 10:47:00 +00:00
|
|
|
- libgl1-mesa-dev
|
|
|
|
- libglu1-mesa-dev
|
2018-05-25 10:25:11 +00:00
|
|
|
- libasound2-dev
|
|
|
|
- libfreetype6-dev
|
2016-03-07 10:47:00 +00:00
|
|
|
- libssl-dev
|
|
|
|
|
2017-03-19 11:54:11 +00:00
|
|
|
# For style checks.
|
2020-08-13 21:02:49 +00:00
|
|
|
- clang-format-8
|
2017-03-19 11:54:11 +00:00
|
|
|
|
2018-05-25 10:25:11 +00:00
|
|
|
before_install:
|
|
|
|
- if [ "$STATIC_CHECKS" = "yes" ]; then
|
|
|
|
unset SCONS_CACHE;
|
|
|
|
fi
|
|
|
|
|
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
|
2018-05-25 10:25:11 +00:00
|
|
|
scons -j2 CC=$CC CXX=$CXX platform=$GODOT_TARGET tools=$TOOLS $OPTIONS;
|
2017-03-19 11:54:11 +00:00
|
|
|
fi
|