summaryrefslogtreecommitdiff
path: root/.github/workflows/meson-gcc-9.yml
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-11 16:07:35 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-02-11 16:07:35 +0100
commitc9b2b53059a2fc23eb939e98a59c61c2414ec3f8 (patch)
tree03d6389d8991b8cbc1f154ab6471cb557e650034 /.github/workflows/meson-gcc-9.yml
parentafac37ad1dab41202ceecfe50315d0074e372f21 (diff)
downloadsigc++-c9b2b53059a2fc23eb939e98a59c61c2414ec3f8.tar.gz
meson.build: Specify 'check' option in run_command()
The default value will be changed in future Meson releases. Don't use deprecated python3.path() and execute(..., gui_app: ...).
Diffstat (limited to '.github/workflows/meson-gcc-9.yml')
-rw-r--r--.github/workflows/meson-gcc-9.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/meson-gcc-9.yml b/.github/workflows/meson-gcc-9.yml
index 0543b32..96b160f 100644
--- a/.github/workflows/meson-gcc-9.yml
+++ b/.github/workflows/meson-gcc-9.yml
@@ -15,9 +15,9 @@ jobs:
export ENV DEBIAN_FRONTEND=noninteractive
sudo apt update
sudo apt install libxml2-utils docbook5-xml docbook-xsl mm-common g++-9 ninja-build python3-setuptools python3-pip --yes
- # Ubuntu 20.04 contains meson 0.53.2, but libsigc++ requires meson >= 0.54.0.
+ # Ubuntu 20.04 contains meson 0.53.2, but libsigc++ requires meson >= 0.55.0.
# Install it with pip3 instead of apt.
- sudo pip3 install "meson>=0.54.0"
+ sudo pip3 install "meson>=0.55.0"
export CXX=g++-9
meson -Dwarnings=fatal _build
cd _build