Build android after all other build.
Because we need the android_<arch> build to be done before.
This commit is contained in:
parent
39d05d1b03
commit
556095f893
10
.travis.yml
10
.travis.yml
|
@ -12,7 +12,8 @@ if: type != push OR tag IS present
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build_docker_images
|
- build_docker_images
|
||||||
- test
|
- build
|
||||||
|
- android_build
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
@ -33,8 +34,9 @@ jobs:
|
||||||
- stage: build_docker_images
|
- stage: build_docker_images
|
||||||
script: *build_images
|
script: *build_images
|
||||||
env: VARIANT=appimage
|
env: VARIANT=appimage
|
||||||
- stage: test
|
- stage: android_build
|
||||||
env: PLATFORM="native_dyn"
|
env: PLATFORM="android"
|
||||||
|
- env: PLATFORM="native_dyn"
|
||||||
os: osx
|
os: osx
|
||||||
- env: PLATFORM="iOS_arm64"
|
- env: PLATFORM="iOS_arm64"
|
||||||
os: osx
|
os: osx
|
||||||
|
@ -63,6 +65,7 @@ cache:
|
||||||
- $HOME/.gradle/wrapper/
|
- $HOME/.gradle/wrapper/
|
||||||
- $HOME/.android/build-cache
|
- $HOME/.android/build-cache
|
||||||
install: if [[ $TRAVIS_OS_NAME != "linux" ]]; then travis/install_extra_deps.sh; fi
|
install: if [[ $TRAVIS_OS_NAME != "linux" ]]; then travis/install_extra_deps.sh; fi
|
||||||
|
stage: build
|
||||||
script:
|
script:
|
||||||
- |
|
- |
|
||||||
if [[ $TRAVIS_OS_NAME = "linux" ]]
|
if [[ $TRAVIS_OS_NAME = "linux" ]]
|
||||||
|
@ -117,7 +120,6 @@ env:
|
||||||
- PLATFORM="i586_static"
|
- PLATFORM="i586_static"
|
||||||
- PLATFORM="native_dyn" DESKTOP_ONLY=1
|
- PLATFORM="native_dyn" DESKTOP_ONLY=1
|
||||||
- PLATFORM="flatpak" DESKTOP_ONLY=1
|
- PLATFORM="flatpak" DESKTOP_ONLY=1
|
||||||
- PLATFORM="android"
|
|
||||||
- PLATFORM="android_arm"
|
- PLATFORM="android_arm"
|
||||||
- PLATFORM="android_arm64"
|
- PLATFORM="android_arm64"
|
||||||
- PLATFORM="android_x86"
|
- PLATFORM="android_x86"
|
||||||
|
|
Loading…
Reference in New Issue