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

Commit

Permalink
fix coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jul 23, 2017
1 parent 137ff77 commit c924be9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,25 @@ jobs:
echo "#################################################### BASE"
docker run -e "CI=true" \
-v /coverage:/coverage \
--name base \
analogj/capsulecd-build:base \
./ci/coverage.sh base
docker cp base:/coverage/coverage-*.txt /coverage
echo "#################################################### CHEF"
docker run -e "CI=true" \
-v /coverage:/coverage \
--name chef \
analogj/capsulecd-build:chef \
./ci/coverage.sh chef
docker cp chef:/coverage/coverage-*.txt /coverage
ls -alt /coverage
# upload to codecov.
bash <(curl -s https://codecov.io/bash) -f "/coverage/*.txt"
bash <(curl -s https://codecov.io/bash) -f "*.txt" -s /coverage
cat /coverage/coverage-chef.txt
# docker run -e "CI=true" -v /coverage:/tmp/coverage analogj/capsulecd-build:golang
# docker run -e "CI=true" -v /coverage:/tmp/coverage analogj/capsulecd-build:node
Expand Down

0 comments on commit c924be9

Please sign in to comment.