mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 05:10:11 +01:00
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:
parent
6aa9d00b00
commit
7761c69ec9
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ variables:
|
||||||
# NEVER MIX FARM MAINTENANCE WITH ANY OTHER CHANGE IN THE SAME MERGE REQUEST!
|
# 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
|
ARTIFACTS_BASE_URL: https://${CI_PROJECT_ROOT_NAMESPACE}.${CI_PAGES_DOMAIN}/-/${CI_PROJECT_NAME}/-/jobs/${CI_JOB_ID}/artifacts
|
||||||
# Python scripts for structured logger
|
# 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
|
# No point in continuing once the device is lost
|
||||||
MESA_VK_ABORT_ON_DEVICE_LOSS: 1
|
MESA_VK_ABORT_ON_DEVICE_LOSS: 1
|
||||||
# Avoid the wall of "Unsupported SPIR-V capability" warnings in CI job log, hiding away useful output
|
# Avoid the wall of "Unsupported SPIR-V capability" warnings in CI job log, hiding away useful output
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue