mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Merge remote-tracking branch 'upstream/master' into fix25
This commit is contained in:
commit
ca32782adb
@ -1,5 +1,6 @@
|
|||||||
DROP TABLE IF EXISTS test.src;
|
DROP TABLE IF EXISTS test.src;
|
||||||
DROP TABLE IF EXISTS test.dst1;
|
DROP TABLE IF EXISTS test.dst1;
|
||||||
|
DROP TABLE IF EXISTS test.src_to_dst1;
|
||||||
DROP TABLE IF EXISTS test.dst2;
|
DROP TABLE IF EXISTS test.dst2;
|
||||||
|
|
||||||
USE test;
|
USE test;
|
||||||
|
@ -6,14 +6,19 @@ RUN apt-get --allow-unauthenticated update -y \
|
|||||||
apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
||||||
bash \
|
bash \
|
||||||
fakeroot \
|
fakeroot \
|
||||||
cmake \
|
|
||||||
ccache \
|
ccache \
|
||||||
curl \
|
curl \
|
||||||
software-properties-common
|
software-properties-common \
|
||||||
|
gnupg \
|
||||||
|
apt-transport-https \
|
||||||
|
ca-certificates
|
||||||
|
|
||||||
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" >> /etc/apt/sources.list
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" >> /etc/apt/sources.list
|
||||||
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main" >> /etc/apt/sources.list
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main" >> /etc/apt/sources.list
|
||||||
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
|
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
|
||||||
|
RUN curl https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | apt-key add -
|
||||||
|
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main'
|
||||||
|
|
||||||
|
|
||||||
RUN apt-get update -y \
|
RUN apt-get update -y \
|
||||||
&& env DEBIAN_FRONTEND=noninteractive \
|
&& env DEBIAN_FRONTEND=noninteractive \
|
||||||
@ -49,7 +54,8 @@ RUN apt-get update -y \
|
|||||||
gperf \
|
gperf \
|
||||||
git \
|
git \
|
||||||
tzdata \
|
tzdata \
|
||||||
gperf
|
gperf \
|
||||||
|
cmake
|
||||||
|
|
||||||
COPY build.sh /
|
COPY build.sh /
|
||||||
CMD ["/bin/bash", "/build.sh"]
|
CMD ["/bin/bash", "/build.sh"]
|
||||||
|
@ -6,14 +6,19 @@ RUN apt-get --allow-unauthenticated update -y \
|
|||||||
apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
||||||
bash \
|
bash \
|
||||||
fakeroot \
|
fakeroot \
|
||||||
cmake \
|
|
||||||
ccache \
|
ccache \
|
||||||
curl \
|
curl \
|
||||||
software-properties-common
|
software-properties-common \
|
||||||
|
gnupg \
|
||||||
|
apt-transport-https \
|
||||||
|
ca-certificates
|
||||||
|
|
||||||
|
|
||||||
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" >> /etc/apt/sources.list
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" >> /etc/apt/sources.list
|
||||||
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main" >> /etc/apt/sources.list
|
RUN echo "deb [trusted=yes] http://apt.llvm.org/bionic/ llvm-toolchain-bionic-8 main" >> /etc/apt/sources.list
|
||||||
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
|
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
|
||||||
|
RUN curl https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | apt-key add -
|
||||||
|
RUN apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main'
|
||||||
|
|
||||||
RUN apt-get --allow-unauthenticated update -y \
|
RUN apt-get --allow-unauthenticated update -y \
|
||||||
&& env DEBIAN_FRONTEND=noninteractive \
|
&& env DEBIAN_FRONTEND=noninteractive \
|
||||||
@ -72,7 +77,8 @@ RUN apt-get --allow-unauthenticated update -y \
|
|||||||
tzdata \
|
tzdata \
|
||||||
gperf \
|
gperf \
|
||||||
alien \
|
alien \
|
||||||
libcapnp-dev
|
libcapnp-dev \
|
||||||
|
cmake
|
||||||
|
|
||||||
|
|
||||||
COPY build.sh /
|
COPY build.sh /
|
||||||
|
@ -20,7 +20,7 @@ RUN apt-get --allow-unauthenticated update -y \
|
|||||||
# apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
# apt-get --allow-unauthenticated install --yes --no-install-recommends \
|
||||||
# pvs-studio
|
# pvs-studio
|
||||||
|
|
||||||
ENV PKG_VERSION="pvs-studio-7.03.33446.1453-amd64.deb"
|
ENV PKG_VERSION="pvs-studio-7.04.34029.84-amd64.deb"
|
||||||
|
|
||||||
RUN wget -q http://files.viva64.com/beta/$PKG_VERSION
|
RUN wget -q http://files.viva64.com/beta/$PKG_VERSION
|
||||||
RUN sudo dpkg -i $PKG_VERSION
|
RUN sudo dpkg -i $PKG_VERSION
|
||||||
|
Loading…
Reference in New Issue
Block a user