-
Notifications
You must be signed in to change notification settings - Fork 45
Refactor ec key import #229
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
Merged
Merged
Changes from 11 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f424086
cleanup ec loading
DmitriyMusatkin d9ad56a
fix
DmitriyMusatkin 46b8cf8
test and win build fix
DmitriyMusatkin 9329072
lint
DmitriyMusatkin 04de02c
test fix
DmitriyMusatkin e1022e4
fix
DmitriyMusatkin dfb363a
Add codecov
DmitriyMusatkin d55902c
wrong name
DmitriyMusatkin 33df892
docs
DmitriyMusatkin cffe68d
Merge branch 'main' into ec_pkcs8
DmitriyMusatkin 0b6a6d3
add pkcs8 parsing test
DmitriyMusatkin 21deb54
address comments
DmitriyMusatkin 0e9cbd5
small refactor
DmitriyMusatkin 0330000
test fix
DmitriyMusatkin aa69808
zero
DmitriyMusatkin 04c33c9
loggin:
DmitriyMusatkin 398dca0
revert
DmitriyMusatkin 853480d
fix lc
DmitriyMusatkin d1d2990
gen pub if missing
DmitriyMusatkin 622aa13
remove for now
DmitriyMusatkin 07cc6a8
logs
DmitriyMusatkin b9515f5
set pub
DmitriyMusatkin c35d64a
fix and lint
DmitriyMusatkin 7b9a83d
typo
DmitriyMusatkin ac70d69
restore advance fix
DmitriyMusatkin efbb69e
Update source/unix/opensslcrypto_ecc.c
DmitriyMusatkin cbd51fb
addressing comments
DmitriyMusatkin 255dfd7
address comments
DmitriyMusatkin f05bd77
Merge branch 'main' into ec_pkcs8
DmitriyMusatkin 160e398
error preconditions
DmitriyMusatkin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| name: Code coverage check | ||
|
|
||
| on: | ||
| push: | ||
|
|
||
| env: | ||
| BUILDER_VERSION: v0.9.74 | ||
| BUILDER_SOURCE: releases | ||
| BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net | ||
| PACKAGE_NAME: aws-c-cal | ||
| RUN: ${{ github.run_id }}-${{ github.run_number }} | ||
| CRT_CI_ROLE: ${{ secrets.CRT_CI_ROLE_ARN }} | ||
| AWS_DEFAULT_REGION: us-east-1 | ||
|
|
||
| permissions: | ||
| id-token: write # This is required for requesting the JWT | ||
|
|
||
| jobs: | ||
| codecov-linux: | ||
| runs-on: ubuntu-24.04 | ||
| steps: | ||
| - uses: aws-actions/configure-aws-credentials@v4 | ||
| with: | ||
| role-to-assume: ${{ env.CRT_CI_ROLE }} | ||
| aws-region: ${{ env.AWS_DEFAULT_REGION }} | ||
| - name: Checkout Sources | ||
| uses: actions/checkout@v4 | ||
| - name: Build ${{ env.PACKAGE_NAME }} + consumers | ||
| run: | | ||
| python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz?run=${{ env.RUN }}', 'builder')" | ||
| chmod a+x builder | ||
| ./builder build -p ${{ env.PACKAGE_NAME }} --compiler=gcc --cmake-extra=-DASSERT_LOCK_HELD=ON --coverage | ||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
This actually failed, but I didn't have the non-zero exit code in the builder...
Should be fixed by awslabs/aws-crt-builder#340
Also, I put the token in the secrete manager now, so it should work now.