Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
trying to fix coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Sep 18, 2019
1 parent d7973d5 commit 5f56165
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .circleci/config.yml
Expand Up @@ -127,25 +127,20 @@ jobs:
coverage:
machine:
image: circleci/classic:latest
working_directory: ~/coverage
steps:
- run:
name: Make coverage directory
command: |
sudo mkdir -p /coverage
ls -alt /coverage
when: always
- attach_workspace:
at: /coverage
at: .
- run:
name: Merge coverage reports and submit
command: |
ls -alt /coverage
ls -alt ~/coverage
# upload to codecov.
cat /coverage/*.txt >> /coverage/merged.txt
cat ~/coverage/*.txt >> ~/coverage/merged.txt
when: always
- codecov/upload:
file: /coverage/merged.txt
file: ~/coverage/merged.txt

# build capsulecd every week, to ensure that language/dependency breaking changes are caught early.
# https://crontab.guru/every-week
Expand Down

0 comments on commit 5f56165

Please sign in to comment.