Skip to content

Commit 9db69a6

Browse files
committed
update googletest to v1.14
1 parent ee6cb1d commit 9db69a6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ jobs:
55
docker:
66
- image: cimg/python:3.10
77
environment:
8-
GTEST_ROOT: googletest-release-1.12.1/googletest
8+
GTEST_ROOT: googletest-1.14.0/googletest
99
steps:
1010
- checkout
1111
- run: sudo apt-get install cmake
1212
- run: "curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin"
1313
- run: "testspace config url samples.testspace.com"
1414
- run: "pip install gcovr"
15-
- run: "curl -fsSL https://github.com/google/googletest/archive/refs/tags/release-1.12.1.tar.gz | tar -zxvf-"
15+
- run: "curl -fsSL https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz | tar -zxvf-"
1616
- run: |
1717
mkdir -p $GTEST_ROOT/build
1818
pushd $GTEST_ROOT/build
19-
cmake -DGOOGLETEST_VERSION=1.12.1 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
19+
cmake -DGOOGLETEST_VERSION=1.14.0 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
2020
make clean gtest
2121
popd
2222
- run: make -C $GTEST_ROOT/build |& tee build.log ; test ${PIPESTATUS[0]} -eq 0

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
env:
11-
GTEST_ROOT: googletest-release-1.12.1/googletest
11+
GTEST_ROOT: googletest-1.14.0/googletest
1212
steps:
1313
- uses: actions/setup-python@v4
1414
with:
@@ -23,10 +23,10 @@ jobs:
2323
domain: samples
2424
- name: Install GTest
2525
run: |
26-
curl -fsSL https://github.com/google/googletest/archive/refs/tags/release-1.12.1.tar.gz | tar -zxvf-
26+
curl -fsSL https://github.com/google/googletest/archive/refs/tags/v1.14.0.tar.gz | tar -zxvf-
2727
mkdir -p $GTEST_ROOT/build
2828
pushd $GTEST_ROOT/build
29-
cmake -DGOOGLETEST_VERSION=1.12.1 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
29+
cmake -DGOOGLETEST_VERSION=1.14.0 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
3030
make clean gtest
3131
popd
3232
- name: Build

0 commit comments

Comments
 (0)