Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Set protobuf to 3.5.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Serge Panev <[email protected]>
  • Loading branch information
Kh4L committed Jul 28, 2020
1 parent 4f8f00c commit 7febf15
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions ci/docker/Dockerfile.build.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
build-essential \
ninja-build \
git \
protobuf-compiler \
libprotobuf-dev \
clang-6.0 \
clang-tidy-6.0 \
python-yaml \
Expand Down Expand Up @@ -83,6 +81,8 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
pandoc \
## Build-dependencies for ccache 3.7.9
autoconf \
autogen \
libtool \
gperf \
libb2-dev \
libzstd-dev && \
Expand Down Expand Up @@ -110,6 +110,15 @@ COPY install/requirements /work/
RUN python3 -m pip install cmake==3.16.6 && \
python3 -m pip install -r /work/requirements

RUN git clone --recursive -b 3.5.1.1 https://github.com/google/protobuf.git && \
cd protobuf && \
./autogen.sh && \
./configure && \
make -j$(nproc) install && \
cd .. && \
rm -rf protobuf && \
ldconfig

ARG USER_ID=0
COPY install/docker_filepermissions.sh /work/
RUN /work/docker_filepermissions.sh
Expand Down

0 comments on commit 7febf15

Please sign in to comment.