[openssl] OpenSSL_1_1_1-stable update
shane.lontis at oracle.com
shane.lontis at oracle.com
Thu Dec 5 04:51:56 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 7a4d39f0d176f0d17f2de15672e1869b22f3e1d8 (commit)
from 1d320e5c4cb90f75565465b89e6e5fd09cf2093b (commit)
- Log -----------------------------------------------------------------
commit 7a4d39f0d176f0d17f2de15672e1869b22f3e1d8
Author: Fangming.Fang <fangming.fang at arm.com>
Date: Mon Dec 2 02:44:21 2019 +0000
Fix exit issue in travisci
Ungraceful 'exit' probably causes unexpeced error on background activity.
So replace 'exit' with recommended 'travis_terminate'. Also see
https://travis-ci.community/t/exit-0-cannot-exit-successfully-on-arm/5731/4
Change-Id: I382bd93a3e15ecdf305bab23fc4adefbf0348ffb
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
Reviewed-by: Shane Lontis <shane.lontis at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10561)
(cherry picked from commit 6df44cf65fbc7e150965149d7e681ac3e22d11d8)
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 455ccd628f..5e760e5f72 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -152,7 +152,7 @@ matrix:
before_script:
- env
- if [ "$TRAVIS_PULL_REQUEST" != "false" -a -n "$EXTENDED_TEST" ]; then
- (git log -1 $TRAVIS_COMMIT_RANGE | grep '\[extended tests\]' > /dev/null) || exit 0;
+ (git log -1 $TRAVIS_COMMIT_RANGE | grep '\[extended tests\]' > /dev/null) || travis_terminate 0;
fi
- if [ -n "$DESTDIR" ]; then
sh .travis-create-release.sh $TRAVIS_OS_NAME;
More information about the openssl-commits
mailing list