File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,11 @@ jobs:
160
160
git submodule update --init --checkout --depth 1
161
161
time make test262
162
162
163
+ - name : test standalone
164
+ run : |
165
+ ./build/qjs -c examples/hello.js -o hello
166
+ ./hello
167
+
163
168
windows-msvc :
164
169
runs-on : windows-latest
165
170
strategy :
@@ -184,6 +189,10 @@ jobs:
184
189
build\${{matrix.buildType}}\qjs.exe examples\test_point.js
185
190
build\${{matrix.buildType}}\run-test262.exe -c tests.conf
186
191
build\${{matrix.buildType}}\function_source.exe
192
+ - name : test standalone
193
+ run : |
194
+ build\${{matrix.buildType}}\qjs.exe -c examples\hello.js -o hello.exe
195
+ hello.exe
187
196
- name : Set up Visual Studio shell
188
197
uses : egor-tensin/vs-shell@v2
189
198
with :
@@ -351,6 +360,10 @@ jobs:
351
360
- name : test
352
361
run : |
353
362
make test
363
+ - name : test standalone
364
+ run : |
365
+ ./build/qjs -c examples/hello.js -o hello.exe
366
+ ./hello
354
367
windows-mingw-shared :
355
368
runs-on : windows-latest
356
369
defaults :
You can’t perform that action at this time.
0 commit comments