Skip to content

Commit

Permalink
github actions: disable polkit
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
LudovicRousseau committed Nov 19, 2023
1 parent 7160979 commit a003365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a003365

Please sign in to comment.