File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 5
5
docker :
6
6
- image : cimg/python:3.10
7
7
environment :
8
- GTEST_ROOT : googletest-release-1.11.0 /googletest
8
+ GTEST_ROOT : googletest-release-1.12.1 /googletest
9
9
steps :
10
10
- checkout
11
11
- run : sudo apt-get install cmake
12
12
- run : " curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin"
13
13
- run : " testspace config url samples.testspace.com"
14
- - run : " sudo pip install gcovr"
15
- - run : " curl -fsSL https://github.com/google/googletest/archive/refs/tags/release-1.11.0 .tar.gz | tar -zxvf-"
14
+ - run : " pip install gcovr"
15
+ - run : " curl -fsSL https://github.com/google/googletest/archive/refs/tags/release-1.12.1 .tar.gz | tar -zxvf-"
16
16
- run : |
17
17
mkdir -p $GTEST_ROOT/build
18
18
pushd $GTEST_ROOT/build
19
- cmake -DGOOGLETEST_VERSION=1.11.0 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
19
+ cmake -DGOOGLETEST_VERSION=1.12.1 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
20
20
make clean gtest
21
21
popd
22
22
- run : make -C $GTEST_ROOT/build |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
build :
9
- runs-on : ubuntu-18.04
9
+ runs-on : ubuntu-latest
10
10
env :
11
- GTEST_ROOT : googletest-release-1.11.0 /googletest
11
+ GTEST_ROOT : googletest-release-1.12.1 /googletest
12
12
steps :
13
- - uses : actions/setup-python@v3
13
+ - uses : actions/setup-python@v4
14
14
with :
15
15
python-version : 3.x
16
16
- name : Setup build tools
@@ -23,10 +23,10 @@ jobs:
23
23
domain : samples
24
24
- name : Install GTest
25
25
run : |
26
- curl -fsSL https://github.com/google/googletest/archive/refs/tags/release-1.11.0 .tar.gz | tar -zxvf-
26
+ curl -fsSL https://github.com/google/googletest/archive/refs/tags/release-1.12.1 .tar.gz | tar -zxvf-
27
27
mkdir -p $GTEST_ROOT/build
28
28
pushd $GTEST_ROOT/build
29
- cmake -DGOOGLETEST_VERSION=1.11.0 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
29
+ cmake -DGOOGLETEST_VERSION=1.12.1 -Dgtest_build_samples=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG='-g -fprofile-arcs -ftest-coverage' ../
30
30
make clean gtest
31
31
popd
32
32
- name : Build
You can’t perform that action at this time.
0 commit comments