Skip to content

Commit 97250f4

Browse files
committed
test: run version files in the same process in docker
1 parent 8390c75 commit 97250f4

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

building/docker/debian_node.dockerfile

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,7 @@ WORKDIR "/"
88
# run installation
99
RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true
1010

11-
# reload the environment
12-
CMD source ~/.profile
13-
14-
RUN clang --version
15-
RUN cmake --version
16-
RUN ninja --version
17-
RUN ccache --version
18-
RUN cppcheck --version
19-
RUN vcpkg --version
20-
RUN doxygen --version
21-
RUN dot --version
22-
RUN gcovr --version
11+
# reload the environment and print the versions
12+
CMD source ~/.profile && clang --version && cmake --version && ninja --version && ccache --version && cppcheck --version && vcpkg --version && doxygen --version && dot --version && gcovr --version
2313

2414
ENTRYPOINT [ "/bin/sh" ]

0 commit comments

Comments
 (0)