mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
7d17713723
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>
6 lines
165 B
Bash
Executable File
6 lines
165 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Run yamllint against all traces files.
|
|
find . -name '*traces*yml' -print0 | xargs -0 yamllint -d "{rules: {line-length: {max: 1000}}}"
|