From 8296c19817182d84dac2baf4243155cd9a838c5c Mon Sep 17 00:00:00 2001 From: Valentine Burley Date: Fri, 18 Apr 2025 16:43:23 +0200 Subject: [PATCH] ci: Add a workaround for finding deqp-runner on Broadcom Broadcom devices require /usr/local/bin to be unconditionally added to the PATH in order to locate the binaries installed there. Signed-off-by: Valentine Burley Part-of: --- .gitlab-ci/common/init-stage2.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci/common/init-stage2.sh b/.gitlab-ci/common/init-stage2.sh index 45c3b141f06..0ce96019594 100755 --- a/.gitlab-ci/common/init-stage2.sh +++ b/.gitlab-ci/common/init-stage2.sh @@ -109,6 +109,9 @@ export LIBGL_DRIVERS_PATH=/install/lib/dri # telling it to look in /usr/local/lib. export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib +# The Broadcom devices need /usr/local/bin unconditionally added to the path +export PATH=/usr/local/bin:$PATH + # Store Mesa's disk cache under /tmp, rather than sending it out over NFS. export XDG_CACHE_HOME=/tmp