From 095686af68665a2edd46f0a989bfc95675b91a7f Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Wed, 12 Jun 2019 19:10:20 +0100 Subject: [PATCH] ci: bump GIT_DATE to 15 months Currently we're using git clone --since=$GIT_DATE + git checkout $SHA This causes problems when the $SHA is outside the time period. Technically one can do git fetch origin $SHA, yet it requires a toggle in git server-side. There is no obvious way to enable that in gitlab. Alternatively we can (and should) update piglit and deqp on somewhat regular intervals - just like we do for Mesa. Signed-off-by: Emil Velikov --- ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 92ebda5..0694e77 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -10,7 +10,7 @@ ENV CC="gcc-7" ENV CXX="g++-7" ENV CFLAGS="-g3" ENV CXXFLAGS="-g3" -ENV GIT_DATE="`date +%Y-%m-%d -d \"1 year ago\"`" +ENV GIT_DATE="`date +%Y-%m-%d -d \"15 months ago\"`" ENV MESA_DEBUG=1