@@ -47,10 +47,10 @@ jobs:
4747 ./synclibs.sh --use-head
4848 ./autogen.sh
4949 ./configure ${{ matrix.configure_options }}
50- make > /dev/null
50+ make -j4 > /dev/null
5151 - name : Run tests
5252 run : |
53- tests/runtests.sh CHECK_WITH_STDERR =1
53+ tests/runtests.sh -j4 VERBOSE =1
5454 build_dist :
5555 runs-on : ${{ matrix.os }}
5656 strategy :
@@ -75,10 +75,10 @@ jobs:
7575 ./synclibs.sh --use-head
7676 ./autogen.sh
7777 ./configure ${{ matrix.configure_options }}
78- make > /dev/null
78+ make -j4 > /dev/null
7979 - name : Run tests
8080 run : |
81- make distcheck VERBOSE=1
81+ make distcheck AM_MAKEFLAGS="-j4" VERBOSE=1
8282 build_fuse :
8383 runs-on : ${{ matrix.os }}
8484 strategy :
@@ -103,10 +103,10 @@ jobs:
103103 ./synclibs.sh --use-head
104104 ./autogen.sh
105105 ./configure ${{ matrix.configure_options }}
106- make > /dev/null
106+ make -j4 > /dev/null
107107 - name : Run tests
108108 run : |
109- tests/runtests.sh CHECK_WITH_STDERR =1
109+ tests/runtests.sh -j4 VERBOSE =1
110110 build_fuse3 :
111111 runs-on : ${{ matrix.os }}
112112 strategy :
@@ -131,10 +131,10 @@ jobs:
131131 ./synclibs.sh --use-head
132132 ./autogen.sh
133133 ./configure ${{ matrix.configure_options }}
134- make > /dev/null
134+ make -j4 > /dev/null
135135 - name : Run tests
136136 run : |
137- tests/runtests.sh CHECK_WITH_STDERR =1
137+ tests/runtests.sh -j4 VERBOSE =1
138138 build_python :
139139 runs-on : ${{ matrix.os }}
140140 strategy :
@@ -160,12 +160,12 @@ jobs:
160160 ./synclibs.sh --use-head
161161 ./autogen.sh
162162 ./configure ${{ matrix.configure_options }}
163- make > /dev/null
163+ make -j4 > /dev/null
164164 - name : Run tests
165165 env :
166166 PYTHON_VERSION : ${{ matrix.python_version }}
167167 run : |
168- tests/runtests.sh CHECK_WITH_STDERR =1
168+ tests/runtests.sh -j4 VERBOSE =1
169169 build_pyproject :
170170 runs-on : ${{ matrix.os }}
171171 strategy :
@@ -187,7 +187,7 @@ jobs:
187187 ./synclibs.sh --use-head
188188 ./autogen.sh
189189 ./configure ${{ matrix.configure_options }}
190- make > /dev/null
190+ make -j4 > /dev/null
191191 - name : Build Python module
192192 run : |
193193 python -m build
@@ -221,7 +221,7 @@ jobs:
221221 ./synclibs.sh --use-head
222222 ./autogen.sh
223223 ./configure ${{ matrix.configure_options }}
224- make > /dev/null
224+ make -j4 > /dev/null
225225 - name : Run tests
226226 run : |
227- tests/runtests.sh CHECK_WITH_STDERR =1
227+ tests/runtests.sh -j4 VERBOSE =1
0 commit comments