From 89b937bbd730f1584617ab36e3e51c12f357c787 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 10 Aug 2017 19:58:43 -0400 Subject: [PATCH] Try to enable Travis iOS testing Take 5 --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5d5ce2bd..793dca16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,12 +41,15 @@ matrix: - env: BUILD_MODE="asan" script: - - if [[ "$BUILD_MODE" == "ios" ]]; then + - | + if [[ "$BUILD_MODE" == "ios" ]]; then cp TestScritps/setenv-ios.sh . . ./setenv-ios.sh make -f GNUmakefile else - make "$BUILD_MODE" && ./cryptest.exe v && ./cryptest.exe tv all + make "$BUILD_MODE" + ./cryptest.exe v + ./cryptest.exe tv all fi # whitelist branches to avoid testing feature branches twice