aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorCody Northrop <cnorthrop@google.com>2017-09-29 15:34:45 -0600
committerCody Northrop <cnorthrop@google.com>2017-09-29 16:31:37 -0600
commit749c6cc1e70b4122ecdf96e44b6ad2e30ffec0d2 (patch)
treed07f14717a5103368882413f497e4131f4a3a951 /.travis.yml
parent912aa7f10e0f8fd05d92711c03234702630ae61f (diff)
downloadvulkan-validation-layers-749c6cc1e70b4122ecdf96e44b6ad2e30ffec0d2.tar.gz
android: Update toolchain build to handle single ABI
This reduces local arm32 toolchain build from 3m30s to 42s. Also update Travis-CI config to use the new flag, greatly reducing Android build time.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 7249da16c..a95ea05e3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -54,7 +54,7 @@ script:
- if [[ "$VULKAN_BUILD_TARGET" == "LINUX" ]]; then cmake -H. -Bdbuild -DCMAKE_BUILD_TYPE=Debug; fi
- if [[ "$VULKAN_BUILD_TARGET" == "LINUX" ]]; then make -C dbuild; fi
- if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then pushd build-android; fi
- - if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then ./update_external_sources_android.sh; fi
+ - if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then ./update_external_sources_android.sh --abi $ANDROID_ABI; fi
- if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then ./android-generate.sh; fi
- if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then ndk-build APP_ABI=$ANDROID_ABI; fi
- if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then popd; fi