File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -208,6 +208,11 @@ jobs:
208
208
run : |
209
209
cl.exe /DJS_NAN_BOXING=0 /Zs cxxtest.cc
210
210
cl.exe /DJS_NAN_BOXING=1 /Zs cxxtest.cc
211
+ - name : test amalgamation
212
+ run : |
213
+ build\${{matrix.buildType}}\qjs.exe amalgam.js
214
+ cl.exe /std:c11 /experimental:c11atomics quickjs-amalgam.c api-test.c /Fe:amalgam-api-test.exe
215
+ .\amalgam-api-test.exe
211
216
212
217
windows-msvc-vs2019 :
213
218
runs-on : windows-2019
@@ -383,6 +388,12 @@ jobs:
383
388
- name : test api
384
389
run : |
385
390
./build/api-test
391
+ - name : test amalgamation
392
+ run : |
393
+ ./build/qjs amalgam.js
394
+ cc -Wall -I. quickjs-amalgam.c api-test.c -o amalgam-api-test -lm
395
+ ./amalgam-api-test
396
+
386
397
windows-mingw-shared :
387
398
runs-on : windows-latest
388
399
defaults :
@@ -570,7 +581,7 @@ jobs:
570
581
amalgam :
571
582
strategy :
572
583
matrix :
573
- # TODO(bnoordhuis) test on windows
584
+ # Windows is tested as part of windows-msvc
574
585
config :
575
586
- { os: ubuntu-latest }
576
587
- { os: macos-latest }
You can’t perform that action at this time.
0 commit comments