Skip to content

Commit ff23247

Browse files
committed
fixup! CI: install Wizard engine
1 parent f3bb3ba commit ff23247

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

tools/node_wrapper.ml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
1-
let wizard_args = [ "-ext:stack-switching"; "--dir=." ]
1+
let wizard_args = [ "-ext:stack-switching"; "--dir=."; "--dir=/tmp" ]
22

33
let wasmfxtime_args =
44
[ (*"-C"
55
; "collector=null"
66
; *)
77
"-W=exceptions,function-references,stack-switching,gc"
88
; "--dir=."
9+
; "--dir=/tmp"
910
]
1011

11-
let wasmtime_args = [ (*"-C"
12+
let wasmtime_args =
13+
[ (*"-C"
1214
; "collector=null"
13-
; *) "-W=all-proposals=y"; "--dir=." ]
15+
; *) "-W=all-proposals=y"; "--dir=."; "--dir=/tmp" ]
1416

1517
let wasmedge_args =
16-
[ "--enable-gc"; "--enable-exception-handling"; "--enable-tail-call"; "--dir=." ]
18+
[ "--enable-gc"
19+
; "--enable-exception-handling"
20+
; "--enable-tail-call"
21+
; "--dir=."
22+
; "--dir=/tmp"
23+
]
1724

1825
let extra_args_for_wasoo =
1926
[ "--experimental-wasm-imported-strings"

0 commit comments

Comments
 (0)