@@ -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_python :
8383 runs-on : ${{ matrix.os }}
8484 strategy :
@@ -104,12 +104,12 @@ jobs:
104104 ./synclibs.sh --use-head
105105 ./autogen.sh
106106 ./configure ${{ matrix.configure_options }}
107- make > /dev/null
107+ make -j4 > /dev/null
108108 - name : Run tests
109109 env :
110110 PYTHON_VERSION : ${{ matrix.python_version }}
111111 run : |
112- tests/runtests.sh CHECK_WITH_STDERR =1
112+ tests/runtests.sh -j4 VERBOSE =1
113113 build_pyproject :
114114 runs-on : ${{ matrix.os }}
115115 strategy :
@@ -131,7 +131,7 @@ 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 : Build Python module
136136 run : |
137137 python -m build
@@ -165,7 +165,7 @@ jobs:
165165 ./synclibs.sh --use-head
166166 ./autogen.sh
167167 ./configure ${{ matrix.configure_options }}
168- make > /dev/null
168+ make -j4 > /dev/null
169169 - name : Run tests
170170 run : |
171- tests/runtests.sh CHECK_WITH_STDERR =1
171+ tests/runtests.sh -j4 VERBOSE =1
0 commit comments