From a51c2f10fc1edfbef9d4adb7341041a1ef2afa2a Mon Sep 17 00:00:00 2001 From: Fiona Klute Date: Mon, 8 Apr 2024 00:12:39 +0200 Subject: [PATCH] Another workaround for ancient Meson Apparently the 0.x version on Ubuntu 22.04 doesn't understand the "verbose" parameter for tests. --- .github/workflows/analysis.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis.yaml b/.github/workflows/analysis.yaml index c861ae5..e5f68f4 100644 --- a/.github/workflows/analysis.yaml +++ b/.github/workflows/analysis.yaml @@ -95,8 +95,10 @@ jobs: uses: github/codeql-action/init@v3 with: languages: cpp - - name: 'workaround for Meson versions < 1.1' - run: ln -s meson.options meson_options.txt + - name: 'workarounds for ancient Meson (0.x)' + run: | + ln -s meson.options meson_options.txt + sed -e '/verbose: true,/d' test/meson.build - name: meson setup run: meson setup -Dpdf-doc=false build - name: meson compile