From 0464117ad9bd47f079175058771220e8dad4f00b Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Thu, 4 Feb 2021 12:11:48 -0500 Subject: [PATCH] ci: remove nouveau from shader-db runs This is needed since we're about to reinstate the fencing mechanism on screen destruction. Until we figure out another way to handle it, this will cause hangs on exit with the shim. Signed-off-by: Ilia Mirkin Cc: mesa-stable # 21.0 Part-of: --- .gitlab-ci/run-shader-db.sh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.gitlab-ci/run-shader-db.sh b/.gitlab-ci/run-shader-db.sh index e7b50c26e23..d475bb3c76e 100755 --- a/.gitlab-ci/run-shader-db.sh +++ b/.gitlab-ci/run-shader-db.sh @@ -16,12 +16,3 @@ for driver in freedreno intel v3d; do ./run -j${FDO_CI_CONCURRENT:-4} ./shaders \ > $ARTIFACTSDIR/${driver}-shader-db.txt done - -# Run shader-db over a number of supported chipsets for nouveau -for chipset in 40 a3 c0 e4 f0 134 162; do - echo "Running drm-shim for nouveau - $chipset" - env LD_PRELOAD=$LIBDIR/libnouveau_noop_drm_shim.so \ - NOUVEAU_CHIPSET=${chipset} \ - ./run -j${FDO_CI_CONCURRENT:-4} ./shaders \ - > $ARTIFACTSDIR/nouveau-${chipset}-shader-db.txt -done