2023-06-19 19:02:31 +03:00
|
|
|
#
|
|
|
|
# STAGE 1: setup an opam switch with all dependencies installed
|
|
|
|
#
|
2022-07-18 18:08:46 +03:00
|
|
|
# (only depends on the opam files)
|
2023-06-19 19:02:31 +03:00
|
|
|
FROM ocamlpro/ocaml:4.14-2023-06-18 AS dev-build-context
|
|
|
|
# Image from https://hub.docker.com/r/ocamlpro/ocaml
|
2022-07-18 18:08:46 +03:00
|
|
|
|
|
|
|
RUN mkdir catala
|
|
|
|
WORKDIR catala
|
|
|
|
|
|
|
|
# Get only the opam files at this stage to allow caching
|
|
|
|
ADD --chown=ocaml:ocaml *.opam ./
|
|
|
|
|
|
|
|
# trigger the selection of catala dev tools in opam
|
|
|
|
ENV OPAMVAR_cataladevmode=1
|
|
|
|
ENV OPAMVAR_catalaz3mode=1
|
|
|
|
|
|
|
|
# Get a switch with all the dependencies installed
|
2023-06-19 19:02:31 +03:00
|
|
|
# DON'T run 'opam update' here. Instead use a newer parent Docker image
|
|
|
|
# (update the 'FROM' line above)
|
|
|
|
RUN opam --cli=2.1 switch create catala ocaml-system && \
|
2022-07-18 18:08:46 +03:00
|
|
|
opam --cli=2.1 install . --with-test --with-doc --depext-only && \
|
|
|
|
opam --cli=2.1 install . --with-test --with-doc --deps-only && \
|
|
|
|
opam clean
|
2023-06-19 19:02:31 +03:00
|
|
|
# Note: just `opam switch create . --deps-only --with-test --with-doc && opam clean`
|
|
|
|
# should be enough once opam 2.2 is released (see opam#5185)
|
|
|
|
|
|
|
|
# Install extra dependencies not handled yet by the opam depexts
|
|
|
|
#
|
|
|
|
# python3, ninja (samurai in this case), etc. already got installed through opam's
|
|
|
|
# depext mechanism at this point -- see clerk.opam and catala.opam
|
|
|
|
#
|
|
|
|
# pandoc is not in alpine stable yet though, so install it manually with an explicit repository
|
|
|
|
RUN sudo apk add pandoc --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community/
|
|
|
|
|
|
|
|
# Workaround broken rescript build that recompiles its own version of
|
|
|
|
# ninja with a badly written script :[]
|
|
|
|
RUN sudo apk add pythonispython3
|
2022-07-18 18:08:46 +03:00
|
|
|
|
|
|
|
|
2023-06-19 19:02:31 +03:00
|
|
|
#
|
|
|
|
# STAGE 2: get the whole repo, run checks and builds
|
|
|
|
#
|
2022-08-01 20:56:04 +03:00
|
|
|
FROM dev-build-context
|
2022-07-18 18:08:46 +03:00
|
|
|
|
|
|
|
# Get the full repo
|
|
|
|
ADD --chown=ocaml:ocaml . .
|
|
|
|
|
|
|
|
# Prepare extra local dependencies
|
2023-03-02 13:47:51 +03:00
|
|
|
RUN opam exec -- make dependencies-python dependencies-js pygments
|
2022-07-18 18:08:46 +03:00
|
|
|
|
|
|
|
# OCaml backtraces may be useful on failure
|
|
|
|
ENV OCAMLRUNPARAM=b
|
2023-02-28 19:26:49 +03:00
|
|
|
# Make sure warnings are treated as errors (variable used in Makefile, profile
|
|
|
|
# defined in ./dune)
|
|
|
|
ENV DUNE_PROFILE=check
|
2022-07-18 18:08:46 +03:00
|
|
|
|
|
|
|
# Check promoted files (but delay failure)
|
|
|
|
RUN opam exec -- make check-promoted > promotion.out 2>&1 || touch bad-promote
|
|
|
|
|
|
|
|
# Check the build
|
|
|
|
RUN opam exec -- make build
|
|
|
|
|
|
|
|
# Check tests & all alt targets
|
2022-07-22 17:30:59 +03:00
|
|
|
RUN OCAMLRUNPARAM=b opam exec -- make all -B
|
2022-07-18 18:08:46 +03:00
|
|
|
|
|
|
|
# Forward results of promotion check
|
|
|
|
RUN if [ -e bad-promote ]; then \
|
|
|
|
echo "[ERROR] Some promoted files were not up-to-date"; \
|
|
|
|
cat promotion.out; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|