Skip to content

Commit

Permalink
fixup! Test odoc.2.2.1 fix for OCaml 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgilchrist committed Oct 13, 2023
1 parent b237ba8 commit cacc4fb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/lib/voodoo.ml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,10 @@ module Do = struct
|> Spec.add
[
run ~network "sudo apt-get update && sudo apt-get install -yy m4";
run ~network ~cache "opam pin -ny odoc.dev https://github.com/tmcgilchrist/odoc.git#b4f11fcff450691a74987a3bf1131f0a52154cc3 && opam depext -iy odoc";
run ~network ~cache
"opam pin -ny odoc.dev \
https://github.com/tmcgilchrist/odoc.git#b4f11fcff450691a74987a3bf1131f0a52154cc3 \
&& opam depext -iy odoc";
run ~network ~cache "opam pin -ny %s && opam depext -iy voodoo-do"
(remote_uri t.commit);
run
Expand All @@ -227,7 +230,10 @@ module Gen = struct
|> Spec.add
[
run ~network "sudo apt-get update && sudo apt-get install -yy m4";
run ~network ~cache "opam pin -ny odoc.dev https://github.com/tmcgilchrist/odoc.git#b4f11fcff450691a74987a3bf1131f0a52154cc3 && opam depext -iy odoc";
run ~network ~cache
"opam pin -ny odoc.dev \
https://github.com/tmcgilchrist/odoc.git#b4f11fcff450691a74987a3bf1131f0a52154cc3 \
&& opam depext -iy odoc";
run ~network ~cache "opam pin -ny %s && opam depext -iy voodoo-gen"
(remote_uri t.commit);
run
Expand Down

0 comments on commit cacc4fb

Please sign in to comment.