Skip to content

Commit 7f0eff0

Browse files
committed
Work around build failure in uri package
The failure looks like: ``` ocamlc lib/.uri.objs/byte/uri_re.{cmi,cmo,cmt} (exit 2) (cd _build/default && /home/opam/.opam/4.07/bin/ocamlc.opt -w -40 -g -bin-annot -I lib/.uri.objs/byte -no-alias-deps -o lib/.uri.objs/byte/uri_re.cmo -c -impl lib/.wrapped_compat/Uri_re.ml-gen) File "lib/.wrapped_compat/Uri_re.ml-gen", line 1, characters 99-110: Error: Unbound module Uri__Uri_re ``` I suspect it's due to a missed dependency within the code itself, probably due to the old packages and `dune`/`jbuilder` version. Building the package separately seems to hide the problem, which is enough until we can upgrade a lot of the dependencies. Signed-off-by: David Scott <[email protected]>
1 parent 9443069 commit 7f0eff0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ RUN opam remote add vpnkit /home/opam/src/repo/darwin
55
RUN opam pin add -y -n vpnkit /home/opam/src
66
RUN opam depext vpnkit -y
77
RUN opam pin add -y -n tcpip https://github.com/djs55/mirage-tcpip.git#vpnkit-20180607
8+
# Work around uri build failure
9+
ENV OPAMJOBS=1
10+
RUN opam install re.1.9.0
11+
RUN opam install uri.2.2.1
812
RUN opam install --deps-only vpnkit -y
913
RUN opam pin remove vpnkit
1014
WORKDIR /home/opam/src

vpnkit.opam

+2
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,6 @@ depends: [
7474
"mirage-clock-lwt" {= "2.0.0"}
7575
"mirage-clock-unix" {= "2.0.0"}
7676
"mirage-random" {= "1.1.0"}
77+
"re" {= "1.9.0"}
78+
"uri" {= "2.2.1"}
7779
]

0 commit comments

Comments
 (0)