File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,19 @@ version: 2.0
33jobs :
44 build :
55 docker :
6- - image : circleci/python:2.7-stretch-browsers
6+ - image : circleci/python:2.7-stretch
7+ environment :
8+ CPPUTEST_HOME : cpputest-3.8
79 steps :
810 - checkout
911 - run : " curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | sudo tar -zxvf- -C /usr/local/bin"
1012 - run : " testspace config url samples.testspace.com"
1113 - run : " sudo pip install gcovr"
1214 - run : " wget https://github.com/cpputest/cpputest/releases/download/v3.8/cpputest-3.8.zip"
1315 - run : " unzip cpputest-3.8.zip"
14- - run : cd cpputest-3.8 /cpputest_build && autoreconf .. -i && ../configure && make && cp -R ./lib ../
15- - run : make -C cpputest-3.8 /examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
16- - run : cpputest-3.8 /examples/CppUTestExamples_tests -o junit -v
16+ - run : cd $CPPUTEST_HOME /cpputest_build && autoreconf .. -i && ../configure && make && cp -R ./lib ../
17+ - run : make -C $CPPUTEST_HOME /examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
18+ - run : $CPPUTEST_HOME /examples/CppUTestExamples_tests -o junit -v
1719 - run : gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml
1820 - run :
1921 name : Send reports to testspace
You can’t perform that action at this time.
0 commit comments