Skip to content

Commit

Permalink
lookup: skip permanent failures (#867)
Browse files Browse the repository at this point in the history
- use HEAD for "nan" (test fixes not in a release)
- use HEAD for "yargs" (lint fixes not in a release)
- commander errors on AIX
- cheerio times out on AIX
- npm errors on AIX
- glob fails everywhere, including their own CI on Travis
- debug fails everywhere, including their own CI on Travis
  • Loading branch information
targos authored Jun 14, 2021
1 parent 58d5239 commit 8bad32f
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions lib/lookup.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"skip": "win32"
},
"cheerio": {
"skip": "win32",
"skip": ["aix", "win32"],
"head": true,
"maintainers": ["matthewmueller", "jugglinmike"]
},
Expand All @@ -104,7 +104,8 @@
},
"commander": {
"prefix": "v",
"maintainers": ["shadowspawn", "abetomo"]
"maintainers": ["shadowspawn", "abetomo"],
"skip": ["aix"]
},
"crc32-stream": {
"maintainers": "ctalkington",
Expand All @@ -122,7 +123,7 @@
},
"debug": {
"maintainers": ["qix", "tootallnate"],
"skip": ["aix", "ppc", "s390", "win32"],
"skip": [true, "aix", "ppc", "s390", "win32"],
"scripts": ["test:node", "lint"]
},
"dicer": {
Expand Down Expand Up @@ -161,7 +162,7 @@
"esprima": {
"maintainers": "ariya",
"expectFail": "fips",
"skip": "win32"
"skip": ["win32"]
},
"express": {
"flaky": "ppc",
Expand Down Expand Up @@ -206,7 +207,8 @@
"prefix": "v",
"flaky": ["win32"],
"expectFail": "fips",
"maintainers": "isaacs"
"maintainers": "isaacs",
"skip": true
},
"got": {
"maintainers": ["sindresorhus"],
Expand Down Expand Up @@ -329,7 +331,8 @@
"maintainers": ["nodejs/addon-api"],
"prefix": "v",
"scripts": ["rebuild-tests", "test"],
"tags": "native"
"tags": "native",
"head": true
},
"node-gyp": {
"envVar": { "FAST_TEST": "true" },
Expand All @@ -354,7 +357,7 @@
"npm": {
"maintainers": ["nodejs/npm"],
"prefix": "v",
"skip": "s390"
"skip": ["aix", "s390"]
},
"path-to-regexp": {
"prefix": "v",
Expand Down Expand Up @@ -579,7 +582,8 @@
"prefix": "v",
"flaky": "ppc",
"expectFail": "fips",
"maintainers": ["bcoe", "addaleax"]
"maintainers": ["bcoe", "addaleax"],
"head": true
},
"yeoman-generator": {
"prefix": "v",
Expand Down

0 comments on commit 8bad32f

Please sign in to comment.