Module: Mesa Branch: main Commit: 7d17713723c1f78f9e28f00881646e56854710c1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7d17713723c1f78f9e28f00881646e56854710c1
Author: Emma Anholt <[email protected]> Date: Tue Apr 18 15:29:57 2023 -0700 ci: Crank up the yamllint line length limit. I hated that CI errors out because I pasted useful information in the yaml. You shouldn't have to manually line-wrap pastes from dmesg. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22562> --- .gitlab-ci/run-yamllint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/run-yamllint.sh b/.gitlab-ci/run-yamllint.sh index ea3616e69ad..282508305ab 100755 --- a/.gitlab-ci/run-yamllint.sh +++ b/.gitlab-ci/run-yamllint.sh @@ -2,4 +2,4 @@ set -e # Run yamllint against all traces files. -find . -name '*traces*yml' -print0 | xargs -0 yamllint -d "{rules: {line-length: {max: 150}}}" +find . -name '*traces*yml' -print0 | xargs -0 yamllint -d "{rules: {line-length: {max: 1000}}}"
