diff options
| author | Omar Roth <omarroth@protonmail.com> | 2019-09-24 20:50:48 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-24 20:50:48 -0400 |
| commit | 1e7c1764812b67160095e0b51d42ee77a2e2338a (patch) | |
| tree | 2776cafb71dd7b2798d6f1ee66f99ea21d6d615f | |
| parent | e390405d0c13060bc55dc2b44ba0ed9ec567cb0b (diff) | |
| parent | 7378a84c9666cd6da211645122e3effa9696093b (diff) | |
| download | invidious-1e7c1764812b67160095e0b51d42ee77a2e2338a.tar.gz invidious-1e7c1764812b67160095e0b51d42ee77a2e2338a.tar.bz2 invidious-1e7c1764812b67160095e0b51d42ee77a2e2338a.zip | |
Merge pull request #766 from leonklingele/travis-shallow-clone
travis: unshallowly clone Git repo
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index f5918bb1..7e61b9ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,9 @@ dist: bionic jobs: include: - stage: build + # TODO: Shallowly clone again once the .git folder is no longer required for building + git: + depth: false language: crystal crystal: latest before_install: @@ -15,6 +18,9 @@ jobs: - crystal spec - stage: build_docker + # TODO: Shallowly clone again once the .git folder is no longer required for building + git: + depth: false language: minimal services: - docker |
