ci: Don't forward long environment variables

Filter out the CI_COMMIT_DESCRIPTION, CI_COMMIT_MESSAGE, and
CI_MERGE_REQUEST_DESCRIPTION variables, which were causing issues in LAVA.

Fixes: cc83b3db5f ("ci: Forward all environment variables to DUTs and crosvm")
Signed-off-by: Valentine Burley <valentine.burley@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35196>
This commit is contained in:
Valentine Burley
2025-05-28 08:27:05 +02:00
committed by Marge Bot
parent 28f051a024
commit 4986c650f6

View File

@@ -310,6 +310,11 @@ function filter_env_vars() {
CI_REGISTRY_PASSWORD
CI_REPOSITORY_URL
# Too long and unnecessary GitLab variables
CI_COMMIT_DESCRIPTION
CI_COMMIT_MESSAGE
CI_MERGE_REQUEST_DESCRIPTION
# Shell-managed variables
_
HOME