diff options
author | Simon Ser <contact@emersion.fr> | 2021-06-25 15:29:27 +0200 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2021-06-25 10:01:25 -0400 |
commit | f6ae028e99a532ffa139e77c8f733d352d474a1a (patch) | |
tree | d11e76ceb9a926a2c99214635d8ea3fa45979472 /.builds/alpine.yml | |
parent | 787842c459a891bdf0c435ee4fc22ff371fe1f60 (diff) |
ci: make Meson warnings fatal
New warnings can be hard to notice in CI, since CI will just pass in
that case. Meson sometimes uses warnings for important mistakes, e.g.
invalid option.
Let's turn warnings into errors so that we can spot these more easily.
Diffstat (limited to '.builds/alpine.yml')
-rw-r--r-- | .builds/alpine.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.builds/alpine.yml b/.builds/alpine.yml index 36227c48..c636ece6 100644 --- a/.builds/alpine.yml +++ b/.builds/alpine.yml @@ -19,7 +19,7 @@ sources: tasks: - setup: | cd wlroots - meson build --default-library=both -Dauto_features=enabled -Dxcb-errors=disabled + meson build --fatal-meson-warnings --default-library=both -Dauto_features=enabled -Dxcb-errors=disabled - build: | cd wlroots ninja -C build |