-
Notifications
You must be signed in to change notification settings - Fork 50
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
Refactor sys-crate Cmake build logic #301
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #301 +/- ##
=======================================
Coverage 95.27% 95.27%
=======================================
Files 55 55
Lines 7010 7010
=======================================
Hits 6679 6679
Misses 331 331 ☔ View full report in Codecov by Sentry. |
b120d22
to
48cc9f9
Compare
48cc9f9
to
9c0a2d7
Compare
} | ||
|
||
if target_vendor() == "apple" { | ||
if target_os().trim() == "ios" { |
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.
no need to .trim()
on other calls to target_os()
(e.g. L88)?
i suppose similar question applies to non-fips
fn test_perl_command() -> bool { | ||
test_command("perl".as_ref(), &["--version".as_ref()]) | ||
} | ||
|
||
fn test_go_command() -> bool { | ||
test_command("go".as_ref(), &["version".as_ref()]) |
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.
do we need to enforce minimum versions here?
i suppose similar question applies to non-fips
Issues:
N/A
Description of changes:
Call-outs:
Builder
trait to provide an abstraction.Testing:
N/A
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.