File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ RUN mkdir /tmp/eigen-build && cd /tmp/eigen && git checkout 3.4 && cd - && cd /t
70
70
71
71
RUN git clone https://github.com/Nelson-numerical-software/nelson.git /nelson
72
72
WORKDIR "/nelson"
73
- RUN git checkout -b v0.6.2
73
+ RUN git checkout -b v0.6.3
74
74
75
75
RUN mkdir /home/nelsonuser
76
76
@@ -85,12 +85,15 @@ USER nelsonuser
85
85
86
86
ENV AUDIODEV null
87
87
88
- RUN cmake -G "Unix Makefiles"
89
- RUN make -j4
90
88
91
- RUN make get_module_skeleton
92
- RUN make buildhelp
93
- RUN make tests_minimal
89
+ RUN cmake -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" .
90
+ RUN cmake --build . -- -j $(nproc)
91
+ RUN cmake --build . -- -j $(nproc) get_module_skeleton
92
+
93
+ RUN cmake --build . -- -j $(nproc) buildhelp
94
+ RUN cmake --build . -- -j $(nproc) tests_minimal
95
+
96
+ RUN xvfb-run -a /nelson/bin/linux64/nelson-adv-cli -e "doc;exit"
94
97
95
98
96
99
EXPOSE 10000:20000
You can’t perform that action at this time.
0 commit comments