[openssl] master update

shane.lontis at oracle.com shane.lontis at oracle.com
Thu Dec 5 04:42:10 UTC 2019


The branch master has been updated
       via  6df44cf65fbc7e150965149d7e681ac3e22d11d8 (commit)
      from  7ba46774b7f1b2e83d44323a8831b615a49f9f37 (commit)


- Log -----------------------------------------------------------------
commit 6df44cf65fbc7e150965149d7e681ac3e22d11d8
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)

-----------------------------------------------------------------------

Summary of changes:
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index a5b66b3dfa..5e65d37795 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -130,7 +130,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