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: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36078>
This commit is contained in:
Eric Engestrom 2025-07-11 10:35:16 +02:00 committed by Marge Bot
parent 6aa9d00b00
commit 7761c69ec9

View file

@ -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