aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.make
diff options
context:
space:
mode:
authorKazuhiko Sakaguchi2019-09-26 09:48:48 +0200
committerKazuhiko Sakaguchi2019-10-02 11:23:14 +0200
commita899bb7ef1d6a2c35b1b9a646dfeae332972f5f6 (patch)
tree70932b486e720b964eda546c0a51dfbdf002bd69 /Dockerfile.make
parent9a3a4e63a1aa775dab774f261313d0e1031620da (diff)
Fix and improve the test suite and Makefile
- improve an error message produced by the `check_join` tactic, - fix the build of the test suite: `make test-suite`, and - add a new rule `only` to build a subset of MathComp.
Diffstat (limited to 'Dockerfile.make')
-rw-r--r--Dockerfile.make3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile.make b/Dockerfile.make
index 7972ad7..1a1dfc2 100644
--- a/Dockerfile.make
+++ b/Dockerfile.make
@@ -26,4 +26,5 @@ RUN ["/bin/bash", "--login", "-c", "set -x \
&& cd mathcomp \
&& make Makefile.coq \
&& make -f Makefile.coq -j ${NJOBS} all \
- && make -f Makefile.coq install"]
+ && make -f Makefile.coq install \
+ && make test-suite"]