From: Ivan Maidanski Date: Mon, 15 Aug 2016 20:50:43 +0000 (+0300) Subject: Appveyor/Travis CI configuration: limit git clone depth to 50 X-Git-Tag: v8.0.0~1173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30bdd67;p=gc Appveyor/Travis CI configuration: limit git clone depth to 50 --- diff --git a/.travis.yml b/.travis.yml index ec010b74..cea798bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ compiler: sudo: false install: - - git clone https://github.com/ivmai/libatomic_ops.git + - git clone --depth=50 https://github.com/ivmai/libatomic_ops.git - ./autogen.sh - ./configure --enable-werror --enable-handle-fork --enable-gcj-support --enable-atomic-uncollectible --enable-disclaim --enable-munmap diff --git a/appveyor.yml b/appveyor.yml index b3540394..af8f65fc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,9 @@ version: 7.7.0-{build} +clone_depth: 50 + build_script: - - git clone https://github.com/ivmai/libatomic_ops.git + - git clone --depth=50 https://github.com/ivmai/libatomic_ops.git - cmake . - cmake --build . --config Debug