diff --git a/docker/packager/deb/Dockerfile b/docker/packager/deb/Dockerfile index dcdf23e0ff00a824f0a82b274db9e08eb731e4d0..4f1be19766825701bb084df5595fc2a571be7c19 100644 --- a/docker/packager/deb/Dockerfile +++ b/docker/packager/deb/Dockerfile @@ -24,7 +24,6 @@ RUN apt-get --allow-unauthenticated update -y \ RUN curl -O https://clickhouse-builds.s3.yandex.net/utils/dpkg-deb RUN chmod +x dpkg-deb RUN cp dpkg-deb /usr/bin -RUN echo "HELLO WORLD" # Libraries from OS are only needed to test the "unbundled" build (that is not used in production). diff --git a/docker/test/pvs/Dockerfile b/docker/test/pvs/Dockerfile index 23a435efee7a5f7049d1e04e83c0336faf61c79c..5a6aea5d320b2aac6d431a187c1977b0179ef79c 100644 --- a/docker/test/pvs/Dockerfile +++ b/docker/test/pvs/Dockerfile @@ -25,7 +25,7 @@ ENV PKG_VERSION="pvs-studio-7.08.39365.50-amd64.deb" RUN wget "https://files.viva64.com/$PKG_VERSION" RUN sudo dpkg -i "$PKG_VERSION" -CMD echo "Hello world" && cd /repo_folder && pvs-studio-analyzer credentials $LICENCE_NAME $LICENCE_KEY -o ./licence.lic \ +CMD cd /repo_folder && pvs-studio-analyzer credentials $LICENCE_NAME $LICENCE_KEY -o ./licence.lic \ && cmake . && ninja re2_st && \ pvs-studio-analyzer analyze -o pvs-studio.log -e contrib -j 4 -l ./licence.lic; \ plog-converter -a GA:1,2 -t fullhtml -o /test_output/pvs-studio-html-report pvs-studio.log; \