Remove ios-tv from allow_failures
parent
3887c919c3
commit
f099d2df91
19
.travis.yml
19
.travis.yml
|
|
@ -28,6 +28,8 @@ env:
|
|||
- BUILD_MODE="ubsan"
|
||||
- BUILD_MODE="ios-arm"
|
||||
- BUILD_MODE="ios-arm64"
|
||||
- BUILD_MODE="ios-watch"
|
||||
- BUILD_MODE="ios-tv"
|
||||
|
||||
matrix:
|
||||
|
||||
|
|
@ -48,11 +50,14 @@ 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
|
||||
- env: BUILD_MODE="ubsan"
|
||||
- env: BUILD_MODE="asan"
|
||||
- os: osx
|
||||
env: BUILD_MODE="ios-watch"
|
||||
|
||||
script:
|
||||
- |
|
||||
|
|
@ -64,6 +69,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
|
||||
|
|
|
|||
Loading…
Reference in New Issue