Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cpp clangformat #853

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/build-sdk-images/cpp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ARG BASE_IMAGE=agones-build-sdk-base:latest
FROM $BASE_IMAGE

RUN apt-get update && \
apt-get install -y zip wget && \
apt-get install -y zip wget clang-format && \
apt-get clean

ADD https://cmake.org/files/v3.14/cmake-3.14.1-Linux-x86_64.sh /cmake-3.14.1-Linux-x86_64.sh
Expand All @@ -37,4 +37,4 @@ ENV PATH /usr/local/go/bin:/go/bin:$PATH

# code generation scripts
COPY *.sh /root/
RUN chmod +x /root/*.sh
RUN chmod +x /root/*.sh
2 changes: 1 addition & 1 deletion build/build-sdk-images/cpp/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
set -ex

cd ./sdks/cpp
make build install archive VERSION=$VERSION
make build verify install archive VERSION=$VERSION
Loading