2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-27 12:29:53 +01:00
xash3d-fwgs/.travis.yml

46 lines
1.8 KiB
YAML
Raw Normal View History

2015-08-11 17:22:39 +02:00
language: android
2015-08-11 15:44:12 +02:00
android:
components:
2015-08-11 16:34:25 +02:00
- platform-tools
2015-08-11 15:44:12 +02:00
- build-tools-21.1.1
2015-10-04 11:24:31 +02:00
- android-13
2015-08-11 15:44:12 +02:00
- extra-android-support
2015-08-11 16:34:25 +02:00
jdk: oraclejdk7
notifications:
email: false
2015-08-11 15:44:12 +02:00
before_install:
- wget http://dl.google.com/android/ndk/android-ndk-r10e-linux-x86_64.bin
2015-08-11 15:53:03 +02:00
- chmod +x android-ndk-r10e-linux-x86_64.bin && ./android-ndk-r10e-linux-x86_64.bin > /dev/null
2015-08-11 15:44:12 +02:00
- mv android-ndk-r10e android-ndk
- export PATH=`pwd`/android-ndk:`pwd`/android-sdk-linux/tools:`pwd`/android-sdk-linux/platform-tools:$PATH
2015-09-06 11:45:59 +02:00
- git submodule init
- git submodule update
2015-08-11 18:20:53 +02:00
script:
2015-08-20 07:28:00 +02:00
- sh gen-version.sh travis build
- python2 makepak.py xash-extras assets/extras.pak
2015-08-22 02:53:18 +02:00
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 SUPPORT_WEBP=false -j2 APP_CFLAGS="-w" APP_ABI="armeabi-v7a-hard"
- ant debug
- cp bin/xashdroid-debug.apk xashdroid-armv7.apk
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 SUPPORT_WEBP=false -j2 APP_CFLAGS="-w" APP_ABI="armeabi"
- ant debug
- cp bin/xashdroid-debug.apk xashdroid-armv6.apk
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 SUPPORT_WEBP=false -j2 APP_CFLAGS="-w" APP_ABI="x86"
2015-08-11 18:20:53 +02:00
- ant debug
2015-08-22 02:53:18 +02:00
- cp bin/xashdroid-debug.apk xashdroid-x86.apk
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 clean
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 -j2 APP_CFLAGS="-w" APP_ABI="armeabi-v7a-hard" CFLAGS_OPT_ARM="-mthumb -mfpu=vfpv3-d16 -mcpu=cortex-a9 -pipe -fPIC"
- ant debug
- cp bin/xashdroid-debug.apk xashdroid-armv7-tegra2.apk
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 clean
- ndk-build NDK_TOOLCHAIN_VERSION=4.8 XASH_SDL=1 -j2 APP_CFLAGS="-w" APP_ABI="armeabi" CFLAGS_OPT_ARMv5="-marm -march=armv5te -msoft-float -fPIC"
- ant debug
- cp bin/xashdroid-debug.apk xashdroid-armv5.apk
2015-08-11 18:20:53 +02:00
after_script:
2016-05-13 23:28:02 +02:00
- sh scripts/travis-upload.sh