File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments