File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
compiler/tests-ocaml/lib-channels Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,8 @@ jobs:
122
122
- name : Checkout Virgil
123
123
uses : actions/checkout@v4
124
124
with :
125
- repository : titzer/virgil
125
+ repository : vouillon/virgil
126
+ ref : wasi
126
127
path : virgil
127
128
128
129
- name : Build Virgil
@@ -135,7 +136,8 @@ jobs:
135
136
- name : Checkout Wizard engine
136
137
uses : actions/checkout@v4
137
138
with :
138
- repository : titzer/wizard-engine
139
+ repository : vouillon/wizard-engine
140
+ ref : wasi
139
141
path : wizard-engine
140
142
141
143
- name : Build Wizard engine
Original file line number Diff line number Diff line change 7
7
let nb_bytes = 3
8
8
9
9
let () =
10
- let ic = open_in_bin ( Filename. basename Sys. argv.(0 ) ) in
10
+ let ic = open_in_bin Sys. argv.(0 ) in
11
11
seek_in ic nb_bytes;
12
12
close_in ic;
13
13
assert (
@@ -21,7 +21,7 @@ let () =
21
21
22
22
(* A variant of #11878, which #11965 failed to fix. *)
23
23
let () =
24
- let ic = open_in_bin ( Filename. basename Sys. argv.(0 ) ) in
24
+ let ic = open_in_bin Sys. argv.(0 ) in
25
25
close_in ic;
26
26
begin try
27
27
seek_in ic (- 1 );
You can’t perform that action at this time.
0 commit comments