Skip to content

Commit c216d9c

Browse files
committed
WIP
1 parent 6aacf74 commit c216d9c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/build-wasm_of_ocaml.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ jobs:
122122
- name: Checkout Virgil
123123
uses: actions/checkout@v4
124124
with:
125-
repository: titzer/virgil
125+
repository: vouillon/virgil
126+
ref: wasi
126127
path: virgil
127128

128129
- name: Build Virgil
@@ -135,7 +136,8 @@ jobs:
135136
- name: Checkout Wizard engine
136137
uses: actions/checkout@v4
137138
with:
138-
repository: titzer/wizard-engine
139+
repository: vouillon/wizard-engine
140+
ref: wasi
139141
path: wizard-engine
140142

141143
- name: Build Wizard engine

compiler/tests-ocaml/lib-channels/close_in.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
let nb_bytes = 3
88

99
let () =
10-
let ic = open_in_bin (Filename.basename Sys.argv.(0)) in
10+
let ic = open_in_bin Sys.argv.(0) in
1111
seek_in ic nb_bytes;
1212
close_in ic;
1313
assert (
@@ -21,7 +21,7 @@ let () =
2121

2222
(* A variant of #11878, which #11965 failed to fix. *)
2323
let () =
24-
let ic = open_in_bin (Filename.basename Sys.argv.(0)) in
24+
let ic = open_in_bin Sys.argv.(0) in
2525
close_in ic;
2626
begin try
2727
seek_in ic (-1);

0 commit comments

Comments
 (0)