Try to enable Travis iOS testing

Take 1
pull/461/head
Jeffrey Walton 2017-08-10 14:35:41 -04:00
parent 69b3a7a664
commit e5d99322fd
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 12 additions and 10 deletions

View File

@ -22,11 +22,11 @@ env:
- BUILD_JOBS=2
matrix:
- BUILD_MODE="all"
- BUILD_MODE="no-asm"
- BUILD_MODE="asan"
- BUILD_MODE="ubsan"
- BUILD_MODE="codecov"
# - BUILD_MODE="all"
# - BUILD_MODE="no-asm"
# - BUILD_MODE="asan"
# - BUILD_MODE="ubsan"
- BUILD_MODE="ios"
matrix:
@ -34,9 +34,6 @@ matrix:
# Skip GCC on OS X entirely
- os: osx
compiler: gcc
# CodeCov crashes under Clang
- compiler: clang
env: BUILD_MODE="codecov"
allow_failures:
# Ignore problems with old toolchains
@ -44,7 +41,12 @@ matrix:
- env: BUILD_MODE="asan"
script:
- make "$BUILD_MODE" && ./cryptest.exe v && ./cryptest.exe tv all
- if [[ "$BUILD_MODE" == "ios" ]]; then
. ./setenv-ios.sh
make -f GNUmakefile
else
make "$BUILD_MODE" && ./cryptest.exe v && ./cryptest.exe tv all
if
after_success:
- if [[ ( ("$BUILD_MODE" = "coverage") && ("$CC" = "gcc") ) ]]; then CODECOV_TOKEN="5c7bc59c-e95f-4594-82c3-33e7a1942592" bash <(curl -s https://codecov.io/bash); fi;
@ -67,4 +69,4 @@ notifications:
recipients:
- cryptopp-build@googlegroups.com
on_success: always # default: change
on_failure: always # default: always
on_failure: always # default: always