File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -308,6 +308,36 @@ jobs:
308
308
build\run-test262.exe -c tests.conf
309
309
build\function_source.exe
310
310
311
+ windows-sdk :
312
+ runs-on : windows-latest
313
+ strategy :
314
+ fail-fast : false
315
+ matrix :
316
+ arch : [x64, Win32]
317
+ buildType : [Debug, Release]
318
+ steps :
319
+ - uses : actions/checkout@v4
320
+ - name : Install windows sdk
321
+ uses : ChristopheLav/windows-sdk-install@v1
322
+ with :
323
+ version-sdk : 26100
324
+ features : ' OptionId.DesktopCPPx86,OptionId.DesktopCPPx64'
325
+ - name : build
326
+ run : |
327
+ cmake -B build -DBUILD_EXAMPLES=ON -DCMAKE_SYSTEM_VERSION="10.0.26100.0" -A ${{matrix.arch}}
328
+ cmake --build build --config ${{matrix.buildType}}
329
+ - name : stats
330
+ run : |
331
+ build\${{matrix.buildType}}\qjs.exe -qd
332
+ - name : test
333
+ run : |
334
+ cp build\${{matrix.buildType}}\fib.dll examples\
335
+ cp build\${{matrix.buildType}}\point.dll examples\
336
+ build\${{matrix.buildType}}\qjs.exe examples\test_fib.js
337
+ build\${{matrix.buildType}}\qjs.exe examples\test_point.js
338
+ build\${{matrix.buildType}}\run-test262.exe -c tests.conf
339
+ build\${{matrix.buildType}}\function_source.exe
340
+
311
341
windows-mingw :
312
342
runs-on : windows-latest
313
343
strategy :
You can’t perform that action at this time.
0 commit comments