summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/meson-clang-10.yml2
-rw-r--r--.github/workflows/meson-gcc-10.yml2
-rw-r--r--.github/workflows/publish-docs.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/meson-clang-10.yml b/.github/workflows/meson-clang-10.yml
index adab196..092c00e 100644
--- a/.github/workflows/meson-clang-10.yml
+++ b/.github/workflows/meson-clang-10.yml
@@ -19,7 +19,7 @@ jobs:
# Install it with pip3 instead of apt.
sudo pip3 install "meson>=0.55.0"
export CXX=clang++-10
- meson -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
+ meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
cd _build
meson compile
- name: Test
diff --git a/.github/workflows/meson-gcc-10.yml b/.github/workflows/meson-gcc-10.yml
index 46cc6b5..d358d7f 100644
--- a/.github/workflows/meson-gcc-10.yml
+++ b/.github/workflows/meson-gcc-10.yml
@@ -19,7 +19,7 @@ jobs:
# Install it with pip3 instead of apt.
sudo pip3 install "meson>=0.55.0"
export CXX=g++-10
- meson -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
+ meson setup -Dwarnings=fatal -Dwarning_level=3 -Dwerror=true _build
cd _build
meson compile
- name: Test
diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml
index 35434f8..95b0a6f 100644
--- a/.github/workflows/publish-docs.yml
+++ b/.github/workflows/publish-docs.yml
@@ -38,7 +38,7 @@ jobs:
export ENV DEBIAN_FRONTEND=noninteractive
sudo apt update
sudo apt install libxml2-utils docbook5-xml docbook-xsl mm-common g++ meson ninja-build python3-setuptools python3-pip --yes
- meson -Dbuild-documentation=true -Dbuild-examples=false -Dbuild-tests=false _build
+ meson setup -Dbuild-documentation=true -Dbuild-examples=false -Dbuild-tests=false _build
meson compile -C _build
- name: Collect Documentation
# Collect all documentation to be published.