Skip to content

Commit

Permalink
Merge pull request #6 from VeriBlock/feature/gtest-in-btcdev
Browse files Browse the repository at this point in the history
Add gtest in btcdev
  • Loading branch information
Warchant authored Jan 14, 2020
2 parents 2af18d1 + 1c0c008 commit a4c0493
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions btcdev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,14 @@ ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
RUN pip3 install --upgrade setuptools wheel bashlex compiledb gcovr

RUN git clone --progress -b release-1.10.0 https://github.com/google/googletest.git && \
( \
cd googletest; \
mkdir build; \
cd build; \
cmake .. -DCMAKE_BUILD_TYPE=Release; \
make -j4 install; \
) && \
rm -rf googletest

WORKDIR /

0 comments on commit a4c0493

Please sign in to comment.