From f7cf53a0b160aee4094dc7e20d899dfe8dabacc6 Mon Sep 17 00:00:00 2001 From: David Heidelberg Date: Tue, 9 Apr 2024 10:50:48 +0200 Subject: [PATCH] ci: re-enable shader-db for nouveau As we have separate jobs, failure won't trigger an extra 20m of waiting. Signed-off-by: David Heidelberg Part-of: --- .gitlab-ci/run-shader-db.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci/run-shader-db.sh b/.gitlab-ci/run-shader-db.sh index 0db5af13aea..c4a9680a696 100755 --- a/.gitlab-ci/run-shader-db.sh +++ b/.gitlab-ci/run-shader-db.sh @@ -19,14 +19,14 @@ for driver in freedreno intel lima v3d vc4; do done # Run shader-db over a number of supported chipsets for nouveau -#for chipset in 40 a3 c0 e4 f0 134 162; do -# section_start shader-db-nouveau-${chipset} "Running shader-db 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" -# section_end shader-db-nouveau-${chipset} -#done +for chipset in 40 a3 c0 e4 f0 134 162; do + section_start shader-db-nouveau-${chipset} "Running shader-db 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" + section_end shader-db-nouveau-${chipset} +done # Run shader-db for r300 (RV370 and RV515) for chipset in 0x5460 0x7140; do