Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ commands:
- store_test_results:
path: ctest_out.xml

orbs:
codecov: codecov/codecov@3.2.2

jobs:
static-test:
machine: &default-machine
Expand Down Expand Up @@ -124,7 +121,11 @@ jobs:
- build
- test
- run: ctest -T Coverage
- codecov/upload
- run:
name: Upload coverage to Codecov
command: |
pip install --user codecov-cli
~/.local/bin/codecovcli --auto-load-params-from CircleCI upload-process --fail-on-error || true
- run: ctest --output-on-failure -T memcheck | tee memcheck.out
- run: >
if grep -q 'Memory Leak\|IPW\|Uninitialized Memory Conditional\|Uninitialized Memory Read' memcheck.out; then
Expand Down