aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornkozlovskiy <nmk@ydb.tech>2023-08-28 17:40:20 +0300
committernkozlovskiy <nmk@ydb.tech>2023-08-28 18:10:01 +0300
commit08708d564348ac8c3a19d0f10e7cb0dd8dfe8d6d (patch)
tree41c984e9af765731f83d1dcdc836cd888fcc97f8
parent10807faf0a0ec2116a95dfabcefaeaa8bdd14f4a (diff)
downloadydb-08708d564348ac8c3a19d0f10e7cb0dd8dfe8d6d.tar.gz
add clang-12 for docker_publish action. clang-12 reqiured for build stable builds
-rw-r--r--.github/docker/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/docker/Dockerfile b/.github/docker/Dockerfile
index ea84e10353..69e8f05530 100644
--- a/.github/docker/Dockerfile
+++ b/.github/docker/Dockerfile
@@ -8,7 +8,8 @@ ENV TZ=Etc/UTC
RUN apt-get update \
&& apt-get install -y sudo wget gnupg lsb-release curl xz-utils tzdata \
- cmake python3-pip ninja-build antlr3 m4 clang-14 lld-14 libidn11-dev libaio1 libaio-dev llvm-14 make \
+ cmake python3-pip ninja-build antlr3 m4 libidn11-dev libaio1 libaio-dev make \
+ clang-12 lld-12 llvm-12 clang-14 lld-14 llvm-14 \
&& pip3 install conan==1.59 grpcio-tools \
&& (V=4.8.1; curl -L https://github.com/ccache/ccache/releases/download/v${V}/ccache-${V}-linux-x86_64.tar.xz | \
tar -xJ -C /usr/local/bin/ --strip-components=1 --no-same-owner ccache-${V}-linux-x86_64/ccache)