From ce63d638d639ad09faddad7c2a67868f2d1f5ba5 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Thu, 24 Jan 2019 15:12:47 +0100 Subject: [PATCH] ci: Bump good mesa version and drm The old mesa version had a bug in handling EXT_texture_sRGB_R8 exposing the texture type even though the extension was not supported by the API. Bump also libdrm since it needs the update. Signed-off-by: Gert Wollny Reviewed-by: Gurchetan Singh Signed-off-by: Dave Airlie --- ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/Dockerfile b/ci/Dockerfile index 8e1544d..96d4837 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -149,7 +149,7 @@ RUN git clone --depth=1 https://github.com/VoltLang/Watt.git && \ rm -rf /volt WORKDIR / -ARG KNOWN_GOOD_DRM=libdrm-2.4.95 +ARG KNOWN_GOOD_DRM=libdrm-2.4.97 WORKDIR /drm RUN git clone --shallow-since="$GIT_DATE" https://gitlab.freedesktop.org/mesa/drm.git . && \ git checkout ${KNOWN_GOOD_DRM} && \ @@ -161,7 +161,7 @@ RUN git clone --shallow-since="$GIT_DATE" https://gitlab.freedesktop.org/mesa/dr rm -rf /drm WORKDIR / -ARG KNOWN_GOOD_MESA=9575cd289325ddbfa96291d7886cfc32a0487e79 +ARG KNOWN_GOOD_MESA=e166003cb7a480fb2672b06201688d4717cbc316 WORKDIR /mesa RUN git clone --shallow-since="$GIT_DATE" https://gitlab.freedesktop.org/mesa/mesa.git . && \ git checkout ${KNOWN_GOOD_MESA} && \