parent
69b3a7a664
commit
e5d99322fd
20
.travis.yml
20
.travis.yml
|
|
@ -22,11 +22,11 @@ env:
|
||||||
- BUILD_JOBS=2
|
- BUILD_JOBS=2
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
- BUILD_MODE="all"
|
# - BUILD_MODE="all"
|
||||||
- BUILD_MODE="no-asm"
|
# - BUILD_MODE="no-asm"
|
||||||
- BUILD_MODE="asan"
|
# - BUILD_MODE="asan"
|
||||||
- BUILD_MODE="ubsan"
|
# - BUILD_MODE="ubsan"
|
||||||
- BUILD_MODE="codecov"
|
- BUILD_MODE="ios"
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
|
|
||||||
|
|
@ -34,9 +34,6 @@ matrix:
|
||||||
# Skip GCC on OS X entirely
|
# Skip GCC on OS X entirely
|
||||||
- os: osx
|
- os: osx
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
# CodeCov crashes under Clang
|
|
||||||
- compiler: clang
|
|
||||||
env: BUILD_MODE="codecov"
|
|
||||||
|
|
||||||
allow_failures:
|
allow_failures:
|
||||||
# Ignore problems with old toolchains
|
# Ignore problems with old toolchains
|
||||||
|
|
@ -44,7 +41,12 @@ matrix:
|
||||||
- env: BUILD_MODE="asan"
|
- env: BUILD_MODE="asan"
|
||||||
|
|
||||||
script:
|
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:
|
after_success:
|
||||||
- if [[ ( ("$BUILD_MODE" = "coverage") && ("$CC" = "gcc") ) ]]; then CODECOV_TOKEN="5c7bc59c-e95f-4594-82c3-33e7a1942592" bash <(curl -s https://codecov.io/bash); fi;
|
- if [[ ( ("$BUILD_MODE" = "coverage") && ("$CC" = "gcc") ) ]]; then CODECOV_TOKEN="5c7bc59c-e95f-4594-82c3-33e7a1942592" bash <(curl -s https://codecov.io/bash); fi;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue