From 3ab8f5fc70206dfe758509dc55e43ba5dd1c9ba6 Mon Sep 17 00:00:00 2001 From: Mark Underseth Date: Thu, 22 Jun 2017 15:20:12 +0000 Subject: [PATCH 1/3] fake feature branch --- .gitignore | 1 + fake-feature.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 fake-feature.txt diff --git a/.gitignore b/.gitignore index dcb29ee..485b8d4 100644 --- a/.gitignore +++ b/.gitignore @@ -12,4 +12,5 @@ !.circleci/config.yml !.c9build.sh !.testspace.txt +!fake-feature.txt diff --git a/fake-feature.txt b/fake-feature.txt new file mode 100644 index 0000000..7264db7 --- /dev/null +++ b/fake-feature.txt @@ -0,0 +1 @@ +This is a fake feature for demostration purposes only! \ No newline at end of file From 022046d1cfc231bb7fc22733b8f1710d63c8e849 Mon Sep 17 00:00:00 2001 From: Mark Underseth Date: Fri, 29 Jun 2018 21:53:59 +0000 Subject: [PATCH 2/3] gcovr 4.0 --- circle.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 circle.yml diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..fd7fbca --- /dev/null +++ b/circle.yml @@ -0,0 +1,25 @@ +machine: + services: + docker + environment: + CPPUTEST_HOME: $HOME/$CIRCLE_PROJECT_REPONAME/cpputest-3.8 + +dependencies: + pre: + - curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | tar -zxvf- -C $HOME/bin + - testspace config url samples.testspace.com + - testspace -v + - pip install gcovr + - wget https://github.com/cpputest/cpputest/releases/download/v3.8/cpputest-3.8.zip + - unzip cpputest-3.8.zip + override: + - cd $CPPUTEST_HOME/cpputest_build && autoreconf .. -i && ../configure && make && cp -R ./lib ../ + +test: + override: + - make -C $CPPUTEST_HOME/examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0 + - $CPPUTEST_HOME/examples/CppUTestExamples_tests -o junit -v + - gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml + + post: + - testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml \ No newline at end of file From 2dceb8376b95eeda85829274cda9e64e71eab116 Mon Sep 17 00:00:00 2001 From: Ivailo Petrov Date: Mon, 27 Aug 2018 16:35:55 -0700 Subject: [PATCH 3/3] removed erroneous circle-1 yml --- circle.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 circle.yml diff --git a/circle.yml b/circle.yml deleted file mode 100644 index fd7fbca..0000000 --- a/circle.yml +++ /dev/null @@ -1,25 +0,0 @@ -machine: - services: - docker - environment: - CPPUTEST_HOME: $HOME/$CIRCLE_PROJECT_REPONAME/cpputest-3.8 - -dependencies: - pre: - - curl -fsSL https://testspace-client.s3.amazonaws.com/testspace-linux.tgz | tar -zxvf- -C $HOME/bin - - testspace config url samples.testspace.com - - testspace -v - - pip install gcovr - - wget https://github.com/cpputest/cpputest/releases/download/v3.8/cpputest-3.8.zip - - unzip cpputest-3.8.zip - override: - - cd $CPPUTEST_HOME/cpputest_build && autoreconf .. -i && ../configure && make && cp -R ./lib ../ - -test: - override: - - make -C $CPPUTEST_HOME/examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0 - - $CPPUTEST_HOME/examples/CppUTestExamples_tests -o junit -v - - gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml - - post: - - testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml \ No newline at end of file