tris: make the boring incremental build deterministic

HEAD is currently breaking the build.
This commit is contained in:
Filippo Valsorda 2017-06-05 15:16:43 -07:00 committed by Peter Wu
parent 7d575cd9ba
commit 44343a1e4d

View File

@ -11,6 +11,9 @@ RUN apk add --update \
&& rm -rf /var/cache/apk/*
RUN git clone https://boringssl.googlesource.com/boringssl
# Cacheable layer of compilation, to make the next incremental
RUN cd boringssl && git checkout 9b885c5
RUN mkdir boringssl/build
RUN cd boringssl/build && cmake -GNinja ..
RUN cd boringssl && ninja -C build