File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -390,6 +390,34 @@ jobs:
390
390
cmd /r build\${{matrix.buildType}}\qjs.exe tests\test_queue_microtask.js
391
391
cmd /r build\${{matrix.buildType}}\function_source.exe
392
392
393
+ windows-ninja :
394
+ runs-on : windows-latest
395
+ strategy :
396
+ fail-fast : false
397
+ matrix :
398
+ buildType : [Debug, Release]
399
+ steps :
400
+ - uses : actions/checkout@v4
401
+ - name : build
402
+ run : |
403
+ cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.buildType}} -G "Ninja"
404
+ cmake --build build --config ${{matrix.buildType}} --target qjs_exe
405
+ cmake --build build --config ${{matrix.buildType}} --target function_source
406
+ - name : stats
407
+ run : |
408
+ build\${{matrix.buildType}}\qjs.exe -qd
409
+ - name : test
410
+ run : |
411
+ build\${{matrix.buildType}}\qjs.exe tests\test_bigint.js
412
+ build\${{matrix.buildType}}\qjs.exe tests\test_closure.js
413
+ build\${{matrix.buildType}}\qjs.exe tests\test_language.js
414
+ build\${{matrix.buildType}}\qjs.exe tests\test_builtin.js
415
+ build\${{matrix.buildType}}\qjs.exe tests\test_loop.js
416
+ build\${{matrix.buildType}}\qjs.exe tests\test_std.js
417
+ build\${{matrix.buildType}}\qjs.exe tests\test_worker.js
418
+ build\${{matrix.buildType}}\qjs.exe tests\test_queue_microtask.js
419
+ build\${{matrix.buildType}}\function_source.exe
420
+
393
421
windows-mingw :
394
422
runs-on : windows-latest
395
423
strategy :
You can’t perform that action at this time.
0 commit comments