-
-
Notifications
You must be signed in to change notification settings - Fork 153
lookup: skip some permanently failing modules #880
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
"@hapi/hapi": { | ||
"prefix": "v", | ||
"maintainers": ["devinivy", "DavidTPate", "AdriVanHoudt"], | ||
"skip": ["darwin", "aix", "debian"] | ||
"skip": ["darwin", "aix", "debian", ">=17"], | ||
"comment": "Verbatim DNS output" | ||
}, | ||
"@hapi/shot": { | ||
"maintainers": "cjihrig", | ||
|
@@ -89,6 +90,7 @@ | |
"cheerio": { | ||
"skip": ["aix", "win32"], | ||
"head": true, | ||
"useGitClone": true, | ||
"maintainers": ["matthewmueller", "jugglinmike"] | ||
}, | ||
"clinic": { | ||
|
@@ -99,7 +101,7 @@ | |
}, | ||
"coffeescript": { | ||
"maintainers": ["jashkenas", "GeoffreyBooth"], | ||
"skip": "rhel" | ||
"skip": ["rhel", "aix"] | ||
}, | ||
"commander": { | ||
"prefix": "v", | ||
|
@@ -171,7 +173,8 @@ | |
"express-session": { | ||
"prefix": "v", | ||
"maintainers": "dougwilson", | ||
"skip": "win32" | ||
"skip": ">=16", | ||
"comment": "https://github.com/expressjs/session/pull/844" | ||
}, | ||
"fastify": { | ||
targos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"maintainers": ["mcollina", "delvedor"], | ||
|
@@ -361,7 +364,8 @@ | |
"path-to-regexp": { | ||
"prefix": "v", | ||
"maintainers": "blakeembrey", | ||
"skip": ["aix"] | ||
"skip": ["aix", ">=17"], | ||
"comment": "OpenSSL 3.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FWIW the tests appear to pass with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ah I guess that wouldn't work for older versions of Node.js 😞. |
||
}, | ||
"pino": { | ||
"prefix": "v", | ||
|
@@ -459,7 +463,9 @@ | |
}, | ||
"socket.io": { | ||
"maintainers": "rauchg", | ||
"head": true | ||
"head": true, | ||
"skip": ">=17", | ||
"comment": "WS is not compatible" | ||
}, | ||
"spawn-wrap": { | ||
"prefix": "v", | ||
|
@@ -533,7 +539,8 @@ | |
"prefix": "v", | ||
"flaky": ["ppc", "darwin"], | ||
"maintainers": "mishoo", | ||
"skip": "12" | ||
"skip": ["12", true], | ||
"comment": "Tests timeout" | ||
}, | ||
"underscore": { | ||
"flaky": ["aix", "s390"], | ||
|
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.
I wasn’t aware of this . . . there’s not really any reason I can think of that CoffeeScript should fail in any environment.
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.
AIX: https://ci.nodejs.org/job/citgm-smoker/nodes=aix72-ppc64/2790/testReport/junit/(root)/citgm/coffeescript_v2_6_1/
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.
Ah, the tests, that makes sense. If I wanted to get the tests running in AIX, say by disabling Puppeteer in AIX, is there some way I could launch an AIX environment to test that my changes work?