From 2a2f0ac3a99f32e6e5cc23003360534400d8f445 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 26 Mar 2019 13:35:41 -0700 Subject: [PATCH] gitlab-ci: Make shallow clones of git trees we'll be nuking at the end. We only check out master, and delete .git when we're done, so save the bandwidth. Signed-off-by: Eric Anholt --- .gitlab-ci/debian-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index ce88f4f3b..28a2afad4 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -15,9 +15,9 @@ apt-get build-dep -y xorg-server cd /root -git clone https://gitlab.freedesktop.org/mesa/piglit.git +git clone https://gitlab.freedesktop.org/mesa/piglit.git --depth 1 -git clone https://gitlab.freedesktop.org/xorg/test/xts +git clone https://gitlab.freedesktop.org/xorg/test/xts --depth 1 cd xts ./autogen.sh xvfb-run make -j$(nproc)