-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
52 lines (42 loc) · 1.32 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# build with:
# docker build . -t maxpluslib
FROM ubuntu:20.04
# the following lines are to avoid the interactive time zone question during install
ENV TZ=Europe/Amsterdam
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update
RUN apt-get install --force-yes -y libxml2-dev libxml2-utils python lcov build-essential make cmake pkg-config git doxygen graphviz
WORKDIR /usr/
# copy relevant input directories
# don't copy existing cmake cache files
COPY src ./src
COPY include ./include
COPY documentation ./documentation
COPY config ./config
COPY CMakeLists.txt .
# make release executables
RUN cmake -DCMAKE_BUILD_TYPE=Release .
RUN make
RUN mkdir /maxpluslib
RUN mkdir /maxpluslib/lib
RUN mkdir /maxpluslib/include
RUN cp -R ./build/lib/* /maxpluslib/lib
RUN cp -R ./include/maxplus /maxpluslib/include/
# execute tests
RUN cmake -DCODE_COVERAGE=ON .
RUN make
# run test and continue also if test fails
RUN mkdir /maxpluslibtest
RUN ctest > /maxpluslibtest/testlog.txt || :
#documentation
RUN mkdir /maxpluslibdoc
RUN make doc
RUN cp -R ./documentation/html /maxpluslibdoc/
# get coverage information
RUN make maxpluslibcoverage
RUN mkdir /maxpluslibcoverage
RUN cp -R ./build/coverage/* /maxpluslibcoverage/
VOLUME /maxpluslib
VOLUME /maxpluslibtest
VOLUME /maxpluslibdoc
VOLUME /maxpluslibcoverage