@@ -55,24 +55,24 @@ jobs:
5555 make tool
5656 - name : diverse configurations
5757 run : |
58- make distclean ENABLE_EXT_M=0 check
59- make distclean ENABLE_EXT_A=0 check
60- make distclean ENABLE_EXT_F=0 check
61- make distclean ENABLE_EXT_C=0 check
62- make distclean ENABLE_SDL=0 check
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
6363 - name : gdbstub test
6464 run : |
6565 make distclean ENABLE_GDBSTUB=1 gdbstub-test
6666 - name : JIT test
6767 run : |
68- make ENABLE_JIT=1 clean check
69- make ENABLE_EXT_A=0 ENABLE_JIT=1 clean check
70- make ENABLE_EXT_F=0 ENABLE_JIT=1 clean check
71- make ENABLE_EXT_C=0 ENABLE_JIT=1 clean check
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
7272 - name : undefined behavior test
7373 run : |
74- make ENABLE_UBSAN=1 clean check
75- make ENABLE_JIT=1 ENABLE_UBSAN=1 clean check
74+ make clean && make ENABLE_UBSAN=1 check
75+ make clean && make ENABLE_JIT=1 ENABLE_UBSAN=1 check
7676
7777 host-arm64 :
7878 needs : [detect-code-related-file-changes]
@@ -99,10 +99,10 @@ jobs:
9999 run : |
100100 make
101101 make check
102- make ENABLE_JIT=1 clean check
103- make ENABLE_EXT_A=0 ENABLE_JIT=1 clean check
104- make ENABLE_EXT_F=0 ENABLE_JIT=1 clean check
105- make ENABLE_EXT_C=0 ENABLE_JIT=1 clean 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
106106
107107 coding-style :
108108 needs : [detect-code-related-file-changes]
0 commit comments