mirror of https://github.com/aminya/setup-cpp
test: run version files in the same process in docker
This commit is contained in:
parent
8390c75901
commit
97250f427f
|
@ -8,17 +8,7 @@ WORKDIR "/"
|
||||||
# run installation
|
# run installation
|
||||||
RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true
|
RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true
|
||||||
|
|
||||||
# reload the environment
|
# reload the environment and print the versions
|
||||||
CMD source ~/.profile
|
CMD source ~/.profile && clang --version && cmake --version && ninja --version && ccache --version && cppcheck --version && vcpkg --version && doxygen --version && dot --version && gcovr --version
|
||||||
|
|
||||||
RUN clang --version
|
|
||||||
RUN cmake --version
|
|
||||||
RUN ninja --version
|
|
||||||
RUN ccache --version
|
|
||||||
RUN cppcheck --version
|
|
||||||
RUN vcpkg --version
|
|
||||||
RUN doxygen --version
|
|
||||||
RUN dot --version
|
|
||||||
RUN gcovr --version
|
|
||||||
|
|
||||||
ENTRYPOINT [ "/bin/sh" ]
|
ENTRYPOINT [ "/bin/sh" ]
|
Loading…
Reference in New Issue