diff options
author | Alexandru Ardelean <ardeleanalex@gmail.com> | 2017-07-19 09:42:33 +0300 |
---|---|---|
committer | Alexandru Ardelean <ardeleanalex@gmail.com> | 2017-07-19 09:42:34 +0300 |
commit | 00481d15156eef5b7292b9d1ab524433ea002426 (patch) | |
tree | 4e4667c5e4c84837df0789ec6cb5e1f3c89fcb81 | |
parent | c188fcfb7c4fdd9f715db872f038f4ff3bf00404 (diff) |
build,travis: limit git depth to 1 level
It's just a minor optimization of the build.
No need to clone up to 50 revisions back (travis default)
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4cf74b1f0..e8e37aa7d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ +git: + depth: 1 language: c dist: trusty sudo: false |