Skip to content

Commit e2ab279

Browse files
committed
test: test the installed tools in docker
1 parent 8a97f81 commit e2ab279

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

building/docker/debian_node.dockerfile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@ ADD "./dist/" "/"
66
WORKDIR "/"
77

88
# run installation
9-
RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9+
RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true
1010

1111
# reload the environment
1212
CMD source ~/.profile
1313

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
23+
1424
ENTRYPOINT [ "/bin/sh" ]

0 commit comments

Comments
 (0)