Skip to content

Commit

Permalink
Updated google-test lib version to v1.12.0 (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshGandhi-AWS authored Oct 14, 2023
1 parent af69d33 commit 2efead6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ RUN curl -sSL https://github.com/Kitware/CMake/releases/download/v3.24.4/cmake-3
# Clone and build Google Test
###############################################################################
WORKDIR /tmp
RUN curl -sSL https://github.com/google/googletest/archive/release-1.11.0.tar.gz -o release-1.11.0.tar.gz \
&& tar xf release-1.11.0.tar.gz \
&& cd googletest-release-1.11.0 \
RUN curl -sSL https://github.com/google/googletest/archive/release-1.12.0.tar.gz -o release-1.12.0.tar.gz \
&& tar xf release-1.12.0.tar.gz \
&& cd googletest-release-1.12.0 \
&& cmake -DBUILD_SHARED_LIBS=ON . \
&& make \
&& cp -a googletest/include/gtest /usr/include/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ RUN wget https://dist.opendnssec.org/source/softhsm-2.3.0.tar.gz \
# Clone and build Google Test
###############################################################################
WORKDIR /tmp
RUN curl -sSL https://github.com/google/googletest/archive/release-1.11.0.tar.gz -o release-1.11.0.tar.gz \
&& tar xf release-1.11.0.tar.gz \
&& cd googletest-release-1.11.0 \
RUN curl -sSL https://github.com/google/googletest/archive/release-1.12.0.tar.gz -o release-1.12.0.tar.gz \
&& tar xf release-1.12.0.tar.gz \
&& cd googletest-release-1.12.0 \
&& cmake -DBUILD_SHARED_LIBS=ON . \
&& make \
&& cp -a googletest/include/gtest /usr/include/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ RUN curl -sSL https://github.com/Kitware/CMake/releases/download/v3.10.0/cmake-3
# Clone and build Google Test
###############################################################################
WORKDIR /tmp
RUN wget --ca-certificate=/etc/ssl/certs/ca-certificates.crt https://github.com/google/googletest/archive/release-1.11.0.tar.gz \
&& tar xf release-1.11.0.tar.gz \
&& cd googletest-release-1.11.0 \
RUN wget --ca-certificate=/etc/ssl/certs/ca-certificates.crt https://github.com/google/googletest/archive/release-1.12.0.tar.gz \
&& tar xf release-1.12.0.tar.gz \
&& cd googletest-release-1.12.0 \
&& cmake -DBUILD_SHARED_LIBS=ON . \
&& make \
&& cp -a googletest/include/gtest /usr/include/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ Public License instead of this License.

------

** Google Test 1.10.0; version 1.10.0 -- https://github.com/google/googletest/blob/v1.10.x/LICENSE
** Google Test 1.12.0; version 1.12.0 -- https://github.com/google/googletest/blob/v1.12.x/LICENSE
Copyright 2008, Google Inc.
All rights reserved.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ Public License instead of this License.

------

** Google Test 1.10.0; version 1.10.0 -- https://github.com/google/googletest/blob/v1.10.x/LICENSE
** Google Test 1.12.0; version 1.12.0 -- https://github.com/google/googletest/blob/v1.12.x/LICENSE
Copyright 2008, Google Inc.
All rights reserved.

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt.gtest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(googletest-download NONE)
include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.10.0
GIT_TAG release-1.12.0
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/CMakeLists.txt.gtest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(googletest-download NONE)
include(ExternalProject)
ExternalProject_Add(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.11.0
GIT_TAG release-1.12.0
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CMAKE_ARGS -DCMAKE_BUILD_TYPE=Debug
Expand Down

0 comments on commit 2efead6

Please sign in to comment.