[openssl-commits] [openssl] master update
Andy Polyakov
appro at openssl.org
Tue Mar 14 20:07:22 UTC 2017
The branch master has been updated
via 22df22e7c3de7e577bbf4db04e21def38b303c8e (commit)
from 4772610ccf306eb53980c2771cba550a5ce36d1c (commit)
- Log -----------------------------------------------------------------
commit 22df22e7c3de7e577bbf4db04e21def38b303c8e
Author: Andy Polyakov <appro at openssl.org>
Date: Mon Mar 13 12:13:07 2017 +0100
.travis.yml: make git submodule update conditional.
Reviewed-by: Rich Salz <rsalz at openssl.org>
Reviewed-by: Richard Levitte <levitte at openssl.org>
-----------------------------------------------------------------------
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:
More information about the openssl-commits
mailing list