@@ -49,30 +49,30 @@ jobs:
4949 run : make
5050 - name : check + tests
5151 run : |
52- make check
53- make tests
54- make misalign
55- make tool
52+ make check -j$(nproc)
53+ make tests -j$(nproc)
54+ make misalign -j$(nproc)
55+ make tool -j$(nproc)
5656 - name : diverse configurations
5757 run : |
58- make distclean && make ENABLE_EXT_M=0 check
59- make distclean && make ENABLE_EXT_A=0 check
60- make distclean && make ENABLE_EXT_F=0 check
61- make distclean && make ENABLE_EXT_C=0 check
62- make distclean && make ENABLE_SDL=0 check
58+ make distclean && make ENABLE_EXT_M=0 check -j$(nproc)
59+ make distclean && make ENABLE_EXT_A=0 check -j$(nproc)
60+ make distclean && make ENABLE_EXT_F=0 check -j$(nproc)
61+ make distclean && make ENABLE_EXT_C=0 check -j$(nproc)
62+ make distclean && make ENABLE_SDL=0 check -j$(nproc)
6363 - name : gdbstub test
6464 run : |
6565 make distclean ENABLE_GDBSTUB=1 gdbstub-test
6666 - name : JIT test
6767 run : |
68- make clean && make ENABLE_JIT=1 check
69- make clean && make ENABLE_EXT_A=0 ENABLE_JIT=1 check
70- make clean && make ENABLE_EXT_F=0 ENABLE_JIT=1 check
71- make clean && make ENABLE_EXT_C=0 ENABLE_JIT=1 check
68+ make clean && make ENABLE_JIT=1 check -j$(nproc)
69+ make clean && make ENABLE_EXT_A=0 ENABLE_JIT=1 check -j$(nproc)
70+ make clean && make ENABLE_EXT_F=0 ENABLE_JIT=1 check -j$(nproc)
71+ make clean && make ENABLE_EXT_C=0 ENABLE_JIT=1 check -j$(nproc)
7272 - name : undefined behavior test
7373 run : |
74- make clean && make ENABLE_UBSAN=1 check
75- make clean && make ENABLE_JIT=1 ENABLE_UBSAN=1 check
74+ make clean && make ENABLE_UBSAN=1 check -j$(nproc)
75+ make clean && make ENABLE_JIT=1 ENABLE_UBSAN=1 check -j$(nproc)
7676
7777 host-arm64 :
7878 needs : [detect-code-related-file-changes]
@@ -97,12 +97,12 @@ jobs:
9797 git config --global --add safe.directory ${{ github.workspace }}/src/mini-gdbstub
9898 # Append custom commands here
9999 run : |
100- make
101- make check
102- make clean && make ENABLE_JIT=1 check
103- make clean && make ENABLE_EXT_A=0 ENABLE_JIT=1 check
104- make clean && make ENABLE_EXT_F=0 ENABLE_JIT=1 check
105- make clean && make ENABLE_EXT_C=0 ENABLE_JIT=1 check
100+ make -j$(nproc)
101+ make check -j$(nproc)
102+ make clean && make ENABLE_JIT=1 check -j$(nproc)
103+ make clean && make ENABLE_EXT_A=0 ENABLE_JIT=1 check -j$(nproc)
104+ make clean && make ENABLE_EXT_F=0 ENABLE_JIT=1 check -j$(nproc)
105+ make clean && make ENABLE_EXT_C=0 ENABLE_JIT=1 check -j$(nproc)
106106
107107 coding-style :
108108 needs : [detect-code-related-file-changes]
0 commit comments