diff options
| author | Cody Northrop <cnorthrop@google.com> | 2017-01-03 08:14:02 -0700 |
|---|---|---|
| committer | Cody Northrop <cnorthrop@google.com> | 2017-01-03 09:47:26 -0700 |
| commit | 8f2fff9039d08631ac0c5447b37c81155ae1c3e5 (patch) | |
| tree | 257221e77b6210ff8440dcc7dcb2fc3f90603a90 | |
| parent | fd8bb2d06a70d91b03f8885a8d0285e70852e4bc (diff) | |
| download | usermoji-8f2fff9039d08631ac0c5447b37c81155ae1c3e5.tar.xz | |
build: Return status immediately if a test fails
| -rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 18cc039b..8fe9dd54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ sudo: required language: cpp matrix: + # Show final status immediately if a test fails. + fast_finish: true include: # Android build. - os: linux @@ -55,8 +57,9 @@ script: make -C dbuild; fi - if [[ "$VULKAN_BUILD_TARGET" == "ANDROID" ]]; then - cd build-android; + pushd build-android; ./update_external_sources_android.sh; ./android-generate.sh; ndk-build APP_ABI=$ANDROID_ABI; + popd; fi |
