diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-15 04:34:08 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-15 04:34:08 +0200 |
commit | 5ebcc94ee484d66ad2799a3dc573cd87395c298d (patch) | |
tree | e2682c0cb9f381e8a8d444928a59f88ff86773d0 /.travis.yml | |
parent | 3039ed7310e9353042b79d9cd43edc6c720ff760 (diff) | |
download | blogc-5ebcc94ee484d66ad2799a3dc573cd87395c298d.tar.gz blogc-5ebcc94ee484d66ad2799a3dc573cd87395c298d.tar.bz2 blogc-5ebcc94ee484d66ad2799a3dc573cd87395c298d.zip |
travis: increase git clone depth
when --depth=50 is not enough to run your tests because `git describe`
fails to find the latest commit with a tag, it probably means that you
are not doing enough releases...
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 9d47280..5c97bb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,10 @@ addons: - rpm - valgrind +git: + depth: 100 + + compiler: - clang - gcc |