mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 04:04:23 +08:00
cbaedd3e50
This allows us to see failure when yamllint return non-zero. Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18595>
6 lines
164 B
Bash
Executable File
6 lines
164 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: 150}}}"
|