-
Notifications
You must be signed in to change notification settings - Fork 101
Bump aws-lc-fips-sys to v0.13.5 #760
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #760 +/- ##
==========================================
- Coverage 95.80% 92.94% -2.86%
==========================================
Files 61 71 +10
Lines 8143 9813 +1670
Branches 0 9813 +9813
==========================================
+ Hits 7801 9121 +1320
- Misses 342 405 +63
- Partials 0 287 +287 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
|
||
| function filter_symbols() { | ||
| if [[ "${CRATE_NAME}" =~ fips ]]; then | ||
| grep -E '^\w*$' | grep -v -E "^bignum_" | grep -v "curve25519_x25519" | grep -v "edwards25519_" | grep -v "p256_montj" | grep -v "p384_montj" | grep -v "p521_montj" | grep -v "p521_j" | grep -v "jent_" | grep -v "fips_" | grep -v "fips_check" |
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.
style nit: you might consider making this pipe-per-line to ease readability and adding/removing clauses
grep -E '$pattern' \
| grep -v -E foo \
| grep -v bar \
...
Description of changes:
Call-outs:
CI failures
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.