The branch master has been updated
       via  22df22e7c3de7e577bbf4db04e21def38b303c8e (commit)
      from  4772610ccf306eb53980c2771cba550a5ce36d1c (commit)


- Log -----------------------------------------------------------------
commit 22df22e7c3de7e577bbf4db04e21def38b303c8e
Author: Andy Polyakov <[email protected]>
Date:   Mon Mar 13 12:13:07 2017 +0100

    .travis.yml: make git submodule update conditional.
    
    Reviewed-by: Rich Salz <[email protected]>
    Reviewed-by: Richard Levitte <[email protected]>

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

Summary of changes:
 .travis.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 3170b61..bfec26c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,11 +3,16 @@ sudo: required
 
 language: c
 cache: ccache
+git:
+    submodules: false
 
 before_install:
     - if [ -n "$COVERALLS" ]; then
           pip install --user cpp-coveralls;
       fi;
+    - if expr "$CONFIG_OPTS" ":" ".*enable-external-tests" > /dev/null; then
+          git submodule update --init --recursive;
+      fi;
 
 addons:
     apt:
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to