diff --git a/.travis.yml b/.travis.yml index c96ed5a5..6d9bbb2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,6 +48,10 @@ matrix: env: BUILD_MODE="ios-arm" - os: linux env: BUILD_MODE="ios-arm64" + - os: linux + env: BUILD_MODE="ios-watch" + - os: linux + env: BUILD_MODE="ios-tv" allow_failures: # Ignore problems with old toolchains @@ -64,6 +68,14 @@ script: cp ./TestScripts/setenv-ios.sh . . ./setenv-ios.sh arm64 make -f GNUmakefile-cross + elif [[ "$BUILD_MODE" == "ios-watch" ]]; then + cp ./TestScripts/setenv-ios.sh . + . ./setenv-ios.sh watch + make -f GNUmakefile-cross + elif [[ "$BUILD_MODE" == "ios-tv" ]]; then + cp ./TestScripts/setenv-ios.sh . + . ./setenv-ios.sh tv + make -f GNUmakefile-cross else make "$BUILD_MODE" ./cryptest.exe v