Skip to content

Commit 4f8dab7

Browse files
committed
Update test helper and all workflows to enble libsystemd build
Signed-off-by: Joachim Wiberg <[email protected]>
1 parent 37d063f commit 4f8dab7

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
./configure --prefix=/usr --exec-prefix= --sysconfdir=/etc --localstatedir=/var \
4747
--enable-x11-common-plugin --enable-testserv-plugin --with-watchdog \
48-
--with-keventd \
48+
--with-keventd --with-libsystemd \
4949
CFLAGS="-fsanitize=address -ggdb"
5050
make -j3 clean
5151
make -j3 V=1

.github/workflows/coverity.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666
- name: Configure
6767
run: |
6868
./autogen.sh
69-
./configure --prefix= --enable-x11-common-plugin --with-watchdog --with-keventd
69+
./configure --prefix= --enable-x11-common-plugin --with-watchdog \
70+
--with-keventd --with-libsystemd
7071
- name: Build
7172
run: |
7273
export PATH=`pwd`/coverity/bin:$PATH

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ jobs:
3939
- name: Creating Makefiles ...
4040
run: |
4141
./autogen.sh
42-
./configure --prefix=/usr --exec-prefix= --sysconfdir=/etc --localstatedir=/var \
43-
--enable-x11-common-plugin --enable-testserv-plugin --with-watchdog \
44-
--with-keventd
42+
./configure --prefix=/usr --exec-prefix= --sysconfdir=/etc \
43+
--localstatedir=/var --enable-x11-common-plugin \
44+
--enable-testserv-plugin --with-watchdog \
45+
--with-keventd --with-libsystemd
4546
- name: Enable unprivileged userns (unshare)
4647
run: |
4748
sudo sysctl kernel.apparmor_restrict_unprivileged_userns=0

test/check.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ if [ "$run_make" -eq 1 ]; then
2525
fi
2626

2727
./configure --prefix=/usr --exec-prefix= --sysconfdir=/etc --localstatedir=/var \
28-
--enable-x11-common-plugin --with-watchdog --with-keventd \
28+
--enable-x11-common-plugin --enable-testserv-plugin --with-watchdog \
29+
--with-keventd --with-libsystemd \
2930
CFLAGS='-fsanitize=address -ggdb'
3031

3132
if [ "$run_make" -eq 1 ]; then

0 commit comments

Comments
 (0)