refactor(common): move cmake --version from Dockerfile to tests

Makes it easier to check the `cmake` version against the Zephyr documentation, especially when the layer is already cached.

PR: #71
This commit is contained in:
innovaker
2021-06-10 20:23:56 +01:00
parent 4404d011c4
commit b5481baf02
2 changed files with 3 additions and 2 deletions

View File

@@ -32,8 +32,7 @@ RUN \
python3-setuptools \
python3-wheel \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& cmake --version
&& rm -rf /var/lib/apt/lists/*
#------------------------------------------------------------------------------