diff options
author | Andy Polyakov <appro@openssl.org> | 2017-03-13 12:13:07 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2017-03-14 21:06:03 +0100 |
commit | 22df22e7c3de7e577bbf4db04e21def38b303c8e (patch) | |
tree | 3f4660b8f5e2cc19e70ca19d2ba2f514e3317f0d /.travis.yml | |
parent | Add test for -nameout output (diff) | |
download | openssl-22df22e7c3de7e577bbf4db04e21def38b303c8e.tar.xz openssl-22df22e7c3de7e577bbf4db04e21def38b303c8e.zip |
.travis.yml: make git submodule update conditional.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 3170b6199b..bfec26cd28 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: |