-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 4.1.0 contains a few improvements to the behaviour and usage of the libraries, namely to the Python bindings and the `clproto` serialization library. See the CHANGELOG and release notes for more details.
- Loading branch information
Showing
71 changed files
with
3,579 additions
and
641 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM ubuntu:20.04 AS build-stage | ||
ARG PROTOBUF_VERSION=3.17.0 | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
autoconf \ | ||
cmake \ | ||
g++ \ | ||
gcc \ | ||
libtool \ | ||
make \ | ||
wget \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
WORKDIR /tmp | ||
RUN wget -O protobuf-cpp-"${PROTOBUF_VERSION}".tar.gz \ | ||
https://github.com/protocolbuffers/protobuf/releases/download/v"${PROTOBUF_VERSION}"/protobuf-cpp-"${PROTOBUF_VERSION}".tar.gz \ | ||
&& tar -xzf protobuf-cpp-"${PROTOBUF_VERSION}".tar.gz \ | ||
&& rm protobuf-cpp-"${PROTOBUF_VERSION}".tar.gz | ||
WORKDIR /tmp/protobuf-"${PROTOBUF_VERSION}" | ||
RUN ./autogen.sh \ | ||
&& ./configure \ | ||
&& make \ | ||
&& make install | ||
FROM ubuntu:20.04 AS google-dependencies | ||
COPY --from=build-stage /usr/local/include/google /usr/local/include/google | ||
COPY --from=build-stage /usr/local/lib/libproto* /usr/local/lib/ | ||
COPY --from=build-stage /usr/local/bin/protoc /usr/local/bin | ||
RUN ldconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.