From 7761c69ec9bda3eae94a38a31b6c06748b587e09 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 11 Jul 2025 10:35:16 +0200 Subject: [PATCH] ci: fix PYTHONPATH variable The variables are evaluated by GitLab before the job starts, while the intent here seemed to have been to append the path at run time; that's not a thing if done here, but luckily this was also not necessary, so let's drop the invalid literal `$PYTHONPATH` from the `PYTHONPATH` list. Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 46c7d807b8e..d2b4372270d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -116,7 +116,7 @@ variables: # NEVER MIX FARM MAINTENANCE WITH ANY OTHER CHANGE IN THE SAME MERGE REQUEST! ARTIFACTS_BASE_URL: https://${CI_PROJECT_ROOT_NAMESPACE}.${CI_PAGES_DOMAIN}/-/${CI_PROJECT_NAME}/-/jobs/${CI_JOB_ID}/artifacts # Python scripts for structured logger - PYTHONPATH: "$PYTHONPATH:$CI_PROJECT_DIR/install" + PYTHONPATH: $CI_PROJECT_DIR/install # No point in continuing once the device is lost MESA_VK_ABORT_ON_DEVICE_LOSS: 1 # Avoid the wall of "Unsupported SPIR-V capability" warnings in CI job log, hiding away useful output