2018-11-18 16:33:32 +01:00
|
|
|
language: c
|
|
|
|
compiler: gcc
|
|
|
|
sudo: false
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- mingw-w64-i686-dev
|
|
|
|
- binutils-mingw-w64-i686
|
|
|
|
- gcc-mingw-w64-i686
|
|
|
|
- g++-mingw-w64-i686
|
|
|
|
- p7zip-full
|
|
|
|
- gcc-multilib
|
|
|
|
- g++-multilib
|
|
|
|
- libx11-dev:i386
|
|
|
|
- libxext-dev:i386
|
|
|
|
- x11-utils
|
|
|
|
- libgl1-mesa-dev
|
|
|
|
- libasound-dev
|
|
|
|
- zlib1g:i386
|
|
|
|
- libstdc++6:i386
|
2018-12-12 02:21:10 +01:00
|
|
|
- libfuse2:i386
|
2018-11-18 16:33:32 +01:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- SDL_VERSION=2.0.8
|
2019-03-29 20:51:25 +01:00
|
|
|
- DEPLOY_BRANCH=newengine
|
2018-11-18 16:33:32 +01:00
|
|
|
git:
|
|
|
|
depth: 50
|
|
|
|
submodules: true
|
|
|
|
jdk:
|
|
|
|
- oraclejdk8
|
2019-03-29 21:11:20 +01:00
|
|
|
|
2019-03-29 20:51:25 +01:00
|
|
|
jobs:
|
|
|
|
allow_failures:
|
|
|
|
- os: osx
|
|
|
|
- os: windows
|
|
|
|
- os: linux
|
|
|
|
include:
|
|
|
|
- stage: init
|
|
|
|
name: "Initialize webdav cache"
|
|
|
|
os: linux
|
|
|
|
cache: false
|
|
|
|
script:
|
2019-03-29 21:11:20 +01:00
|
|
|
- sh scripts/yadisk_clear.sh
|
2019-03-29 21:21:40 +01:00
|
|
|
- stage: build
|
|
|
|
name: "Build for Linux, MinGW & Android"
|
|
|
|
cache: ccache
|
|
|
|
os: linux
|
|
|
|
dist: xenial
|
|
|
|
before_script:
|
|
|
|
- sh scripts/travis_common_deps.sh
|
|
|
|
- sh scripts/travis_${TRAVIS_OS_NAME}_deps.sh
|
|
|
|
- export ANDROID_HOME=$PWD/android-sdk-linux
|
|
|
|
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools:$PWD/android-ndk
|
|
|
|
script:
|
|
|
|
- sh scripts/build_${TRAVIS_OS_NAME}_engine.sh
|
|
|
|
- sh scripts/build_mingw_engine.sh
|
|
|
|
after_script:
|
|
|
|
- cd ${TRAVIS_BUILD_DIR}
|
|
|
|
- ccache --show-stats
|
2019-03-29 21:40:25 +01:00
|
|
|
- sh scripts/yadisk_upload.sh Xash3DFWGS-i386.AppImage xash3d-mingw.7z
|
2019-03-29 21:21:40 +01:00
|
|
|
- # ...
|
|
|
|
name: "Build for OSX"
|
|
|
|
cache: ccache
|
2019-03-29 21:22:47 +01:00
|
|
|
os: osx
|
2019-03-29 21:21:40 +01:00
|
|
|
before_script:
|
|
|
|
- sh scripts/travis_common_deps.sh
|
|
|
|
- sh scripts/travis_${TRAVIS_OS_NAME}_deps.sh
|
|
|
|
script:
|
|
|
|
- sh scripts/build_${TRAVIS_OS_NAME}_engine.sh
|
|
|
|
after_script:
|
|
|
|
- cd ${TRAVIS_BUILD_DIR}
|
2019-03-29 21:32:06 +01:00
|
|
|
- sh scripts/yadisk_upload.sh xash3d-osx.tar.bz2
|
2019-03-29 21:21:40 +01:00
|
|
|
- # ...
|
|
|
|
name: "Build for Windows MSVC"
|
|
|
|
cache: ccache
|
2019-03-29 21:22:47 +01:00
|
|
|
os: windows
|
2019-03-29 21:21:40 +01:00
|
|
|
before_script:
|
|
|
|
- sh scripts/travis_common_deps.sh
|
|
|
|
- sh scripts/travis_${TRAVIS_OS_NAME}_deps.sh
|
|
|
|
script:
|
|
|
|
- sh scripts/build_${TRAVIS_OS_NAME}_engine.sh
|
|
|
|
after_script:
|
|
|
|
- cd ${TRAVIS_BUILD_DIR}
|
|
|
|
- sh scripts/yadisk_upload.sh xash3d-vc.7z
|
2019-03-29 20:51:25 +01:00
|
|
|
- stage: deploy
|
|
|
|
name: "Deploy to github"
|
|
|
|
os: linux
|
|
|
|
cache: false
|
|
|
|
script:
|
|
|
|
- sh scripts/travis-deploy.sh Xash3DFWGS-i386.AppImage xash3d-mingw.7z xash3d-osx.tar.bz2 xash3d-vc.7z
|
|
|
|
|