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

lookup: skip platforms for serialport #994

Merged
merged 1 commit into from
Sep 30, 2023

Conversation

jeromecovington
Copy link
Contributor

This skips the remaining platforms that still pose a problem for verifying serialport against a -pre version of Node.js
Relates to: #992

Checklist
  • npm test passes
  • contribution guidelines followed
    here

@jeromecovington
Copy link
Contributor Author

I confess I do not yet have visibility into where/how the integration tests for additional platforms are run.

cc @Trott

@codecov-commenter
Copy link

codecov-commenter commented Sep 30, 2023

Codecov Report

All modified lines are covered by tests ✅

Comparison is base (5892481) 96.44% compared to head (7d043a2) 96.44%.
Report is 2 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #994   +/-   ##
=======================================
  Coverage   96.44%   96.44%           
=======================================
  Files          28       28           
  Lines        2139     2139           
=======================================
  Hits         2063     2063           
  Misses         76       76           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

This skips the remaining platforms that still pose a problem for
verifying serialport against a `-pre` version of Node.js
Relates to: nodejs#992
lib/lookup.json Outdated
@@ -420,6 +420,7 @@
"comment": "postlint script fails"
},
"serialport": {
"skip": ["aix", "s390x", "rhel"],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this will work:

Suggested change
"skip": ["aix", "s390x", "rhel"],
"skip": ["ppc", "s390x"],

AIX in CI is ppc. rhel will skip rhel-x64 which is passing. I think we just want to skip ppc and s390x. (Skipping on processor type probably makes more sense here anyway, since it's a can't-compile-for-that-processor issue, I believe.)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you. Seeing both "aix", and "ppc" elsewhere in the lookup was a little confusing.

@Trott
Copy link
Member

Trott commented Sep 30, 2023

@Trott
Copy link
Member

Trott commented Sep 30, 2023

This worked! Hooray! Landing.

@Trott Trott merged commit 037c204 into nodejs:main Sep 30, 2023
7 of 8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants