File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -350,6 +350,7 @@ jobs:
350350 run : |
351351 ./testall.sh
352352 - name : releasetest
353+ shell : cmd
353354 working-directory : tools/test
354355 run : |
355356 ./testall.sh
@@ -405,6 +406,7 @@ jobs:
405406 nmake
406407 nmake install
407408 - name : Release test
409+ shell : cmd
408410 working-directory : tools\test
409411 run : |
410412 testall.bat
@@ -457,6 +459,7 @@ jobs:
457459 nmake
458460 nmake install
459461 - name : Release test
462+ shell : cmd
460463 working-directory : tools\test
461464 run : |
462465 testall.bat
@@ -510,6 +513,7 @@ jobs:
510513 nmake
511514 nmake install
512515 - name : Release test
516+ shell : cmd
513517 working-directory : tools\test
514518 run : |
515519 testall.bat
Original file line number Diff line number Diff line change @@ -11,10 +11,21 @@ if exist Makefile (
1111 %MAKE% distclean
1212)
1313
14-
1514for /d %%d in (*) do (
1615 set TESTNAME = %%d
1716 echo ---------------------------------------------------------------------
17+
18+ cd %%d
19+ if exist Makefile (
20+ %MAKE% distclean
21+ )
22+ if exist %%d .pro (
23+ qmake CONFIG+=debug
24+ %MAKE%
25+ if ERRORLEVEL 1 goto :build_error
26+ )
27+ cd ..
28+
1829 if exist %%d \debug\%%d .exe (
1930 echo Testing %%d \debug\%%d .exe ...
2031
You can’t perform that action at this time.
0 commit comments