-
Notifications
You must be signed in to change notification settings - Fork 15
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
Get Sha256 Checksum for Release Artifacts #289
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
majanjua-amzn
previously approved these changes
Nov 8, 2024
A few questions:
Happy to sync up on this. |
harrryr
force-pushed
the
add-checksum
branch
7 times, most recently
from
December 8, 2024 23:40
c7193c8
to
32d4fec
Compare
harrryr
changed the title
Add checksum for wheel artifact and also add version.txt to keep trac…
Add checksum for latest artifact to metadata file
Dec 8, 2024
srprash
reviewed
Dec 10, 2024
harrryr
force-pushed
the
add-checksum
branch
4 times, most recently
from
December 16, 2024 13:12
6f0311d
to
82bc923
Compare
harrryr
changed the title
Add checksum for latest artifact to metadata file
Get Sha256 Checksum for Release Artifacts
Dec 16, 2024
harrryr
force-pushed
the
add-checksum
branch
3 times, most recently
from
December 16, 2024 20:41
fd7498e
to
bd4d094
Compare
srprash
previously approved these changes
Dec 17, 2024
majanjua-amzn
previously approved these changes
Dec 17, 2024
harrryr
force-pushed
the
add-checksum
branch
from
December 17, 2024 21:51
bfdfee9
to
f8372f8
Compare
harrryr
force-pushed
the
add-checksum
branch
2 times, most recently
from
December 17, 2024 22:19
734a8ec
to
2146f09
Compare
harrryr
force-pushed
the
add-checksum
branch
from
December 17, 2024 22:19
2146f09
to
d3a9ccd
Compare
majanjua-amzn
previously approved these changes
Dec 17, 2024
srprash
reviewed
Dec 17, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non-blocking: I would also like to see steps somewhere on how can the checksum file be used. Include a simple command example in the readme?
harrryr
force-pushed
the
add-checksum
branch
3 times, most recently
from
December 18, 2024 01:01
6a5e57b
to
f88c154
Compare
harrryr
force-pushed
the
add-checksum
branch
from
December 18, 2024 01:09
f88c154
to
53fff0a
Compare
srprash
approved these changes
Dec 20, 2024
harrryr
added a commit
to aws-observability/aws-otel-js-instrumentation
that referenced
this pull request
Dec 20, 2024
*Issue #, if available:* Same change as this [PR](aws-observability/aws-otel-python-instrumentation#289) Example: [Release Note](https://github.com/harrryr/aws-otel-js-instrumentation/releases/tag/v) *Testing* Workflow run: https://github.com/harrryr/aws-otel-js-instrumentation/actions/runs/12384515024 Verified that the .sha256 has the correct content and running `shasum -a 256 -c <artifact_name>.sha256` returns the output `<artifact_name>: OK` By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
harrryr
added a commit
to aws-observability/aws-otel-java-instrumentation
that referenced
this pull request
Dec 20, 2024
*Issue #, if available:* Same change as this [PR](aws-observability/aws-otel-python-instrumentation#289) By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue #, if available:
We want to provide the checksum of release artifact to customers.
Description of changes:
When new artifact is released through
release_build.yml
, get the sha256 checksum of the artifact then attach it to the release note as a.sha256
fileExample: Release Note
Testing
Workflow run: https://github.com/harrryr/aws-otel-python-instrumentation/actions/runs/12384286607
Verified that the .sha256 has the correct content and running
shasum -a 256 -c <artifact_name>.sha256
returns the output<artifact_name>: OK
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.