Skip to content

Commit

Permalink
Skip building manuals in --otknl mode
Browse files Browse the repository at this point in the history
  • Loading branch information
binghe committed Apr 30, 2024
1 parent 63527fe commit 252c722
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion developers/docker-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ RUN bin/build ${BUILDOPTS}

# Building HOL manuals when PolyML is used
RUN if [ "poly" = "${SML}" ]; then \
cd Manual; ../bin/Holmake -j2; \
if echo ${BUILDOPTS} | grep -q "otknl"; then \
echo Skip manual building; \
else \
cd Manual; ../bin/Holmake -j2; \
fi \
fi

# This can be overrided by "docker run <command>"
Expand Down

0 comments on commit 252c722

Please sign in to comment.