Skip to content

Commit 3e989f0

Browse files
committed
lookup: skip permanent failures
PPC segfaults all seem related to the TypeScript compiler. - use HEAD for "nan" (test fixes not in a release) - use HEAD for "yargs" (lint fixes not in a release) - commander errors on AIX and segfaults on PPC - cheerio times out on AIX - npm errors on AIX - socket.io fails in a V8 CHECK on AIX and segfaults on PPC - esprima fails on AIX and segfault on PPC - path-to-regexp segfaults on PPC - ws fails in a V8 CHECK on PPC - glob fails everywhere, including their own CI on Travis - jest fails everywhere because MongoDB cannot start - debug fails everywhere, including their own CI on Travis
1 parent 58d5239 commit 3e989f0

1 file changed

Lines changed: 18 additions & 12 deletions

File tree

lib/lookup.json

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"skip": "win32"
8989
},
9090
"cheerio": {
91-
"skip": "win32",
91+
"skip": ["aix", "win32"],
9292
"head": true,
9393
"maintainers": ["matthewmueller", "jugglinmike"]
9494
},
@@ -104,7 +104,8 @@
104104
},
105105
"commander": {
106106
"prefix": "v",
107-
"maintainers": ["shadowspawn", "abetomo"]
107+
"maintainers": ["shadowspawn", "abetomo"],
108+
"skip": ["aix", "ppc"]
108109
},
109110
"crc32-stream": {
110111
"maintainers": "ctalkington",
@@ -122,7 +123,7 @@
122123
},
123124
"debug": {
124125
"maintainers": ["qix", "tootallnate"],
125-
"skip": ["aix", "ppc", "s390", "win32"],
126+
"skip": [true, "aix", "ppc", "s390", "win32"],
126127
"scripts": ["test:node", "lint"]
127128
},
128129
"dicer": {
@@ -161,7 +162,7 @@
161162
"esprima": {
162163
"maintainers": "ariya",
163164
"expectFail": "fips",
164-
"skip": "win32"
165+
"skip": ["aix", "ppc", "win32"]
165166
},
166167
"express": {
167168
"flaky": "ppc",
@@ -206,7 +207,8 @@
206207
"prefix": "v",
207208
"flaky": ["win32"],
208209
"expectFail": "fips",
209-
"maintainers": "isaacs"
210+
"maintainers": "isaacs",
211+
"skip": true
210212
},
211213
"got": {
212214
"maintainers": ["sindresorhus"],
@@ -255,7 +257,7 @@
255257
"yarn": true,
256258
"scripts": ["build:js", "test-ci-partial"],
257259
"envVar": { "CI": true },
258-
"skip": ["aix", "s390x", "ppc", "darwin", "win32"],
260+
"skip": [true, "aix", "s390x", "ppc", "darwin", "win32"],
259261
"timeout": 1800000
260262
},
261263
"jquery": {
@@ -329,7 +331,8 @@
329331
"maintainers": ["nodejs/addon-api"],
330332
"prefix": "v",
331333
"scripts": ["rebuild-tests", "test"],
332-
"tags": "native"
334+
"tags": "native",
335+
"head": true
333336
},
334337
"node-gyp": {
335338
"envVar": { "FAST_TEST": "true" },
@@ -354,12 +357,12 @@
354357
"npm": {
355358
"maintainers": ["nodejs/npm"],
356359
"prefix": "v",
357-
"skip": "s390"
360+
"skip": ["aix", "s390"]
358361
},
359362
"path-to-regexp": {
360363
"prefix": "v",
361364
"maintainers": "blakeembrey",
362-
"skip": ["aix"]
365+
"skip": ["aix", "ppc"]
363366
},
364367
"pino": {
365368
"prefix": "v",
@@ -457,7 +460,8 @@
457460
},
458461
"socket.io": {
459462
"maintainers": "rauchg",
460-
"head": true
463+
"head": true,
464+
"skip": ["aix", "ppc"]
461465
},
462466
"spawn-wrap": {
463467
"prefix": "v",
@@ -573,13 +577,15 @@
573577
},
574578
"ws": {
575579
"expectFail": "fips",
576-
"maintainers": ["einaros", "3rd-Eden", "lpinca"]
580+
"maintainers": ["einaros", "3rd-Eden", "lpinca"],
581+
"skip": "ppc"
577582
},
578583
"yargs": {
579584
"prefix": "v",
580585
"flaky": "ppc",
581586
"expectFail": "fips",
582-
"maintainers": ["bcoe", "addaleax"]
587+
"maintainers": ["bcoe", "addaleax"],
588+
"head": true
583589
},
584590
"yeoman-generator": {
585591
"prefix": "v",

0 commit comments

Comments
 (0)