Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maint(deps): upgrade buildevents binary #111

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/commands/finish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ parameters:
type: string
steps:
- restore_cache:
key: buildevents-v0.16.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
key: buildevents-v0.17.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
- run:
name: Finish the build by sending the root span
command: |
Expand Down
4 changes: 2 additions & 2 deletions src/commands/start_trace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ steps:
- run:
name: downloading buildevents executables
command: |
BASE_URL=https://github.com/honeycombio/buildevents/releases/download/v0.16.0
BASE_URL=https://github.com/honeycombio/buildevents/releases/download/v0.17.0
curl -q -L -o ~/project/bin/be-linux-x86_64/buildevents ${BASE_URL}/buildevents-linux-amd64
# Note: the URL says arm64, but the path on disk says aarch64
# because that's a thing `uname` gives you.
Expand All @@ -23,7 +23,7 @@ steps:
name: make them executable
command: chmod 755 ~/project/bin/be*/buildevents
- save_cache:
key: buildevents-v0.16.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
key: buildevents-v0.17.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
paths:
- ~/project/bin
- run:
Expand Down
2 changes: 1 addition & 1 deletion src/commands/watch_build_and_finish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ parameters:
default: 20
steps:
- restore_cache:
key: buildevents-v0.16.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
key: buildevents-v0.17.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
- run:
name: watch then finish build trace
command: |
Expand Down
2 changes: 1 addition & 1 deletion src/commands/with_job_span.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parameters:
type: steps
steps:
- restore_cache:
key: buildevents-v0.16.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
key: buildevents-v0.17.0-2{{ .Environment.BUILDEVENTS_CACHE_VERSION }}
- run:
name: starting span for job
command: |
Expand Down
Loading