Skip to content

Commit

Permalink
add a step to finish the build's trace (#43)
Browse files Browse the repository at this point in the history
This adds the root span so you can see full traces.
  • Loading branch information
maplebed authored Jun 19, 2019
1 parent 3507200 commit 00fea42
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ jobs:
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${CIRCLE_TAG} ./artifacts/samproxy_${CIRCLE_TAG:1:20}_amd64.deb
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} ${CIRCLE_TAG} ./artifacts/samproxy-${CIRCLE_TAG:1:20}-1.x86_64.rpm
finish_trace:
executor: linuxgo
steps:
- buildevents/finish_trace:
result: success

workflows:
build:
jobs:
Expand All @@ -92,6 +98,12 @@ workflows:
filters:
tags:
only: /.*/
- finish_trace:
requires:
- test
filters:
tags:
only: /.*/
- build:
requires:
- test
Expand Down

0 comments on commit 00fea42

Please sign in to comment.