aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJerry Yu <jerry.h.yu@arm.com>2023-03-13 10:46:01 +0800
committerJerry Yu <jerry.h.yu@arm.com>2023-03-13 10:46:01 +0800
commit55b3ed74c9e58463bcd741e8fa86c595abef61ab (patch)
treeec2e43d849994ac9fd3d2531b3e596cb8b09c554 /.travis.yml
parent02487a2123b3b8b6c64c2303747a12e2c5975488 (diff)
downloadmbedtls-55b3ed74c9e58463bcd741e8fa86c595abef61ab.zip
mbedtls-55b3ed74c9e58463bcd741e8fa86c595abef61ab.tar.gz
mbedtls-55b3ed74c9e58463bcd741e8fa86c595abef61ab.tar.bz2
Add reason for arm64 host travis tests
Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 10 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index d4deb2c..3d86681 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -89,8 +89,11 @@ jobs:
packages:
- gcc
script:
- # Do a manual build+test sequence rather than using all.sh, because
- # there's no all.sh component that does what we want.
+ # Do a manual build+test sequence rather than using all.sh.
+ #
+ # On Arm64 host of Travis CI, the time of `test_full_cmake_*` exceeds
+ # limitation of Travis CI. Base on `test_full_cmake_*`, we removed
+ # `ssl-opt.sh` and GnuTLS compat.sh here to meet the time limitation.
- scripts/config.py full
- make generated_files
- make CFLAGS='-O3 -Werror -fsanitize=address,undefined -fno-sanitize-recover=all' LDFLAGS='-Werror -fsanitize=address,undefined -fno-sanitize-recover=all'
@@ -112,8 +115,11 @@ jobs:
- clang
- gnutls-bin
script:
- # Do a manual build+test sequence rather than using all.sh, because
- # there's no all.sh component that does what we want.
+ # Do a manual build+test sequence rather than using all.sh.
+ #
+ # On Arm64 host of Travis CI, the time of `test_full_cmake_*` exceeds
+ # limitation of Travis CI. Base on `test_full_cmake_*`, we removed
+ # `ssl-opt.sh` and OpenSSl compat.sh here to meet the time limitation.
- scripts/config.py full
- make generated_files
- make CC=clang CFLAGS='-O3 -Werror -fsanitize=address,undefined -fno-sanitize-recover=all' LDFLAGS='-Werror -fsanitize=address,undefined -fno-sanitize-recover=all'