Skip to content

Commit

Permalink
Remove GBench global buster installation
Browse files Browse the repository at this point in the history
  • Loading branch information
PROFeNoM committed Jan 10, 2024
1 parent 56aaceb commit b290364
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions dockerfiles/ci/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -160,18 +160,6 @@ RUN set -eux; \
/opt/cmake/${CMAKE_VERSION}/bin/cmake --build build/ --target install; \
rm -rfv /tmp/*

# Install Google Benchmark
RUN set -eux; \
GBENCH_VERSION="1.8.3"; \
GBENCH_SHA256="6bc180a57d23d4d9515519f92b0c83d61b05b5bab188961f36ac7b06b0d9e9ce"; \
cd /tmp && curl -OL https://github.com/google/benchmark/archive/v${GBENCH_VERSION}.tar.gz; \
(echo "${GBENCH_SHA256} v${GBENCH_VERSION}.tar.gz" | sha256sum -c -); \
mkdir gbench && cd gbench; \
tar -xf ../v${GBENCH_VERSION}.tar.gz --strip 1; \
/opt/cmake/${CMAKE_VERSION}/bin/cmake -Bbuild -H. -DBENCHMARK_ENABLE_TESTING=OFF -DCMAKE_INSTALL_PREFIX=/opt/gbench -DBENCHMARK_ENABLE_GTEST_TESTS=OFF -DCMAKE_BUILD_TYPE=Release; \
/opt/cmake/${CMAKE_VERSION}/bin/cmake --build build/ --config Release --target install; \
rm -rfv /tmp/*

# Install lcov
RUN set -eux; \
LCOV_VERSION="1.15"; \
Expand Down

0 comments on commit b290364

Please sign in to comment.