From a0033653b2ac62abb04165a36a4dbd56c68a1a80 Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Sun, 19 Nov 2023 15:24:16 +0100 Subject: [PATCH] github actions: disable polkit Github actions provides Ubuntu 22.04 which does provide polkit version < 0.111 So we can't use it. We have to wait until Ubuntu 24.04 is available. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0d92e7a..94dec1f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,10 +47,10 @@ jobs: run: | ./bootstrap export CFLAGS="-Wall -Wextra -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wswitch-enum -Wundef -Wuninitialized -Wunused -Wwrite-strings -Wmissing-noreturn -flto=auto -O2 -Wp,-D_FORTIFY_SOURCE=2" - ./configure ${{ matrix.configure_args }} + ./configure --disable-polkit ${{ matrix.configure_args }} make V=1 - name: distcheck shell: bash run: | - make distcheck + AM_DISTCHECK_CONFIGURE_FLAGS=--disable-polkit make distcheck