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:
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
Original file line number Diff line number Diff line change 77let nb_bytes = 3
88
99let () =
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. *)
2323let () =
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 );
You can’t perform that action at this time.
0 commit comments