Skip to content
Snippets Groups Projects
Commit ba116528 authored by murgatroid99's avatar murgatroid99
Browse files

Set leaf dockerfiles to clean C library before rebuilding

parent 3e598cdc
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,7 @@ RUN cd /var/local/git/grpc \ ...@@ -7,6 +7,7 @@ RUN cd /var/local/git/grpc \
&& git submodule update --init --recursive && git submodule update --init --recursive
# Install the C core. # Install the C core.
RUN make clean -C /var/local/git/grpc
RUN make install_c -C /var/local/git/grpc RUN make install_c -C /var/local/git/grpc
RUN cd /var/local/git/grpc/src/node && npm install && node-gyp rebuild RUN cd /var/local/git/grpc/src/node && npm install && node-gyp rebuild
......
...@@ -5,6 +5,7 @@ RUN cd /var/local/git/grpc \ ...@@ -5,6 +5,7 @@ RUN cd /var/local/git/grpc \
&& git pull --recurse-submodules \ && git pull --recurse-submodules \
&& git submodule update --init --recursive && git submodule update --init --recursive
RUN make clean -C /var/local/git/grpc
RUN make install_c -j12 -C /var/local/git/grpc RUN make install_c -j12 -C /var/local/git/grpc
RUN cd /var/local/git/grpc/src/php/ext/grpc && git pull && phpize RUN cd /var/local/git/grpc/src/php/ext/grpc && git pull && phpize
......
...@@ -10,6 +10,7 @@ RUN cd /var/local/git/grpc \ ...@@ -10,6 +10,7 @@ RUN cd /var/local/git/grpc \
RUN touch /var/local/git/grpc/include/grpc/support/string.h RUN touch /var/local/git/grpc/include/grpc/support/string.h
# Build the C core. # Build the C core.
RUN make clean -C /var/local/git/grpc
RUN make install_c -C /var/local/git/grpc RUN make install_c -C /var/local/git/grpc
# Build ruby gRPC and run its tests # Build ruby gRPC and run its tests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment