Skip to content

Commit cddd2f0

Browse files
committed
Fix caml_hash_mix_string/bytes
1 parent d543c05 commit cddd2f0

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

runtime/wasm/hash.wat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@
180180
(return_call $jsstring_hash
181181
(local.get $h) (struct.get $js 0 (local.get $s))))
182182

183+
(export "caml_hash_mix_bytes" (func $caml_hash_mix_bytes))
183184
(@if use-js-string
184185
(@then
185186
(export "caml_hash_mix_string" (func $caml_hash_mix_string))

tools/ci_setup.ml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ let forked_packages =
2424
StringSet.of_list
2525
[ "async_js"
2626
; "base"
27+
; "basement"
2728
; "core"
2829
; "core_kernel"
2930
; "core_unix"
@@ -32,6 +33,7 @@ let forked_packages =
3233
; "bonsai_web" (* Compatibility with effect syntax *)
3334
; "bonsai_web_components"
3435
; "bonsai_web_test"
36+
; "ppx_hash"
3537
; "time_now"
3638
; "typerep" (* https://github.com/janestreet/typerep/pull/7 *)
3739
; "virtual_dom" (* Compatibility with effect syntax *)
@@ -348,10 +350,12 @@ let branch nm =
348350
match nm with
349351
| "async_js"
350352
| "base"
353+
| "basement"
351354
| "bigstringaf"
352355
| "core"
353356
| "core_kernel"
354357
| "core_unix"
358+
| "ppx_hash"
355359
| "time_now"
356360
| "zarith_stubs_js" -> Some "js-strings"
357361
| _ -> Some "wasm-latest"

0 commit comments

Comments
 (0)