Skip to content

Commit 0f4a487

Browse files
committed
.github: tests share same sysroot, must run in sequence
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
1 parent f1b5b42 commit 0f4a487

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
compiler: [gcc, clang]
2222
fail-fast: false
2323
env:
24-
MAKEFLAGS: -j3
2524
CC: ${{ matrix.compiler }}
2625
steps:
2726
- name: Install dependencies
@@ -33,14 +32,14 @@ jobs:
3332
run: |
3433
./autogen.sh
3534
./configure --prefix= --enable-static
36-
make V=1
35+
make -j3 V=1
3736
- name: Regular Finit
3837
run: |
3938
./configure --prefix=/usr --exec-prefix= --sysconfdir=/etc --localstatedir=/var \
4039
--enable-x11-common-plugin --enable-testserv-plugin --with-watchdog \
4140
--with-keventd
42-
make clean
43-
make V=1
41+
make -j3 clean
42+
make -j3 V=1
4443
- name: Install to /tmp
4544
run: |
4645
DESTDIR=/tmp make install-strip

0 commit comments

Comments
 (0)