From 4a6cdc34a5596f0fcb41339eacb88f0bbbb5267d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 10 Aug 2017 21:19:29 -0400 Subject: [PATCH] Try to enable Travis iOS testing Take 16 --- .travis.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 47c93628..80bffd8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,8 @@ env: # - BUILD_MODE="no-asm" # - BUILD_MODE="asan" # - BUILD_MODE="ubsan" - - BUILD_MODE="ios" + - BUILD_MODE="ios-arm" + - BUILD_MODE="ios-arm64" matrix: @@ -44,9 +45,13 @@ matrix: script: - | - if [[ "$BUILD_MODE" == "ios" ]]; then + if [[ "$BUILD_MODE" == "ios-arm" ]]; then cp ./TestScripts/setenv-ios.sh . - . ./setenv-ios.sh + . ./setenv-ios.sh arm + make -f GNUmakefile-cross + elif [[ "$BUILD_MODE" == "ios-arm64" ]]; then + cp ./TestScripts/setenv-ios.sh . + . ./setenv-ios.sh arm64 make -f GNUmakefile-cross elif [[ "$BUILD_MODE" == "ios" ]]; then # TODO: How do we do the iOS test on just OS X once?