summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-11-10 13:32:27 +0000
committerSimon McVittie <smcv@collabora.com>2022-11-17 18:26:56 +0000
commit0b6de1b443bde259ea79839e0762aec7763892aa (patch)
tree028cf86a24d82a0b94edd20582e9ddf85008e50f
parentbdfebb44da96a5fd4df745f4f53161e08e2927b2 (diff)
downloadflatpak-0b6de1b443bde259ea79839e0762aec7763892aa.tar.gz
workflows: Use `meson setup` instead of leaving the `setup` verb implicit
Meson 0.64.0 officially deprecates omitting the verb. `meson setup` has been supported since Meson 0.42, which is much older than the oldest version we support. Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--.github/workflows/check.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 26b7333b..df413a43 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -70,7 +70,7 @@ jobs:
# We don't do gtk-doc or GObject-Introspection here, because they can
# clash with AddressSanitizer. Instead, the clang build enables those.
run: |
- meson _build \
+ meson setup _build \
-Db_sanitize=address,undefined \
-Dgir=disabled \
-Dgtkdoc=disabled \