Try to enable Travis iOS testing

Take 16
pull/461/head
Jeffrey Walton 2017-08-10 21:19:29 -04:00
parent c99beec2cd
commit 4a6cdc34a5
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 8 additions and 3 deletions

View File

@ -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?