summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorEmma Anholt <emma@anholt.net>2023-04-18 15:29:57 -0700
committerMarge Bot <emma+marge@anholt.net>2023-04-20 02:22:41 +0000
commit7d17713723c1f78f9e28f00881646e56854710c1 (patch)
tree04649e0efff4a3b28f6711e889cea8e33828e680 /.gitlab-ci
parent392266ad6a766ef39223ac5d2b87b421da04e4a4 (diff)
downloadmesa-7d17713723c1f78f9e28f00881646e56854710c1.tar.gz
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>
Diffstat (limited to '.gitlab-ci')
-rwxr-xr-x.gitlab-ci/run-yamllint.sh2
1 files changed, 1 insertions, 1 deletions
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}}}"