Skip to content

Commit

Permalink
maint: remove buildevents from circle (#48)
Browse files Browse the repository at this point in the history
- remove buildevents from circle config. we are not actively reviewing
and responding to this data.
  • Loading branch information
JamieDanielson authored Jan 25, 2023
1 parent 39e1c3f commit 62ee9e1
Showing 1 changed file with 4 additions and 29 deletions.
33 changes: 4 additions & 29 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
version: 2.1

orbs:
buildevents: honeycombio/buildevents@0.9.0

# enable a job when tag created (tag create is ignored by default)
filters_always: &filters_always
filters:
Expand Down Expand Up @@ -37,15 +34,6 @@ executors:
GO111MODULE: "on"

jobs:
setup:
executor: go
steps:
- buildevents/start_trace
watch:
executor: go
steps:
- buildevents/watch_build_and_finish

test:
parameters:
goversion:
Expand All @@ -55,15 +43,10 @@ jobs:
name: go
goversion: "<< parameters.goversion >>"
steps:
- buildevents/with_job_span:
steps:
- checkout
- run: make test
- store_test_results:
path: ./unit-tests.xml
- buildevents/add_context:
field_name: go_version
field_value: << parameters.goversion >>
- checkout
- run: make test
- store_test_results:
path: ./unit-tests.xml

publish_github:
executor: go
Expand All @@ -79,17 +62,9 @@ jobs:
workflows:
build:
jobs:
- setup:
<<: *filters_always
- watch:
<<: *filters_always
requires:
- setup
- test:
<<: *matrix_goversions
<<: *filters_always
requires:
- setup
- publish_github:
<<: *filters_publish
context: Honeycomb Secrets for Public Repos
Expand Down

0 comments on commit 62ee9e1

Please sign in to comment.