Test iOS Watch and TV builds
parent
08191d5dff
commit
a9fd2b6104
12
.travis.yml
12
.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
|
||||
|
|
|
|||
Loading…
Reference in New Issue