From f7ac2fc12151d6fdf740d33d260f9960ce1c4726 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Fri, 10 May 2019 17:17:13 +0200 Subject: [PATCH 1/7] chore: add jest to lookup --- lib/lookup.json | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/lookup.json b/lib/lookup.json index d3285d0e5..dd06671fa 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -153,12 +153,6 @@ "maintainers": ["nzakas", "mysticatea", "not-an-aardvark"], "comment": "Skipped because libX11 is required for headless Chrome" }, - "eslint-plugin-jest": { - "prefix": "v", - "maintainers": "SimenB", - "yarn": true, - "skip": ["aix", "s390x"] - }, "esprima": { "maintainers": "ariya", "expectFail": "fips", @@ -250,6 +244,16 @@ "prefix": "v", "maintainers": "juliangruber" }, + "jest": { + "prefix": "v", + "maintainers": ["cpojer", "scotthovestadt", "SimenB", "thymikee", "jeysal"], + "yarn": true, + "install": ["install-no-ts-build"], + "scripts": ["test-ci-partial"], + "envVar": { "CI": true }, + "skip": ["aix", "s390x", "ppc"], + "timeout": 1800000 + }, "jquery": { "skip": "win32", "flaky": ["linux", "aix", "darwin"], From 128fee201be28cc8c9d7aec338bffa04a05158ba Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 20 Oct 2020 11:27:25 +0200 Subject: [PATCH 2/7] bump timeout even more --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index dd06671fa..bc8d3d16a 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -252,7 +252,7 @@ "scripts": ["test-ci-partial"], "envVar": { "CI": true }, "skip": ["aix", "s390x", "ppc"], - "timeout": 1800000 + "timeout": 3600000 }, "jquery": { "skip": "win32", From b79c5c638019bc27c703db74fcae06a2ee83735d Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 20 Oct 2020 12:22:11 +0200 Subject: [PATCH 3/7] fix install/build script --- lib/grab-project.js | 4 +++- lib/lookup.json | 3 +-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/grab-project.js b/lib/grab-project.js index 8158ab56b..20cee0487 100644 --- a/lib/grab-project.js +++ b/lib/grab-project.js @@ -12,6 +12,8 @@ async function grabProject(context) { } return new Promise((resolve, reject) => { + const packageManager = + context.options.yarn || context.module.useYarn ? 'yarn' : 'npm'; let packageName = context.module.raw; if (context.module.type === 'directory') { context.module.raw = context.module.name = path.basename(packageName); @@ -21,7 +23,7 @@ async function grabProject(context) { context.emit( 'data', 'info', - `${context.module.name} npm:`, + `${context.module.name} ${packageManager}:`, `Downloading project: ${packageName}` ); let options = createOptions(context.path, context); diff --git a/lib/lookup.json b/lib/lookup.json index bc8d3d16a..37fc20636 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -248,8 +248,7 @@ "prefix": "v", "maintainers": ["cpojer", "scotthovestadt", "SimenB", "thymikee", "jeysal"], "yarn": true, - "install": ["install-no-ts-build"], - "scripts": ["test-ci-partial"], + "scripts": ["build:js", "test-ci-partial"], "envVar": { "CI": true }, "skip": ["aix", "s390x", "ppc"], "timeout": 3600000 From a639e4701c0e59d44dd9145cc9e44d120b436d32 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Tue, 20 Oct 2020 17:36:54 +0200 Subject: [PATCH 4/7] skip node 10 --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index 37fc20636..17ec2d48e 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -250,7 +250,7 @@ "yarn": true, "scripts": ["build:js", "test-ci-partial"], "envVar": { "CI": true }, - "skip": ["aix", "s390x", "ppc"], + "skip": ["aix", "s390x", "ppc", "10.x"], "timeout": 3600000 }, "jquery": { From bf6849e7151de876fccc03d96d3f32e7da65aa7a Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 21 Oct 2020 12:13:42 +0200 Subject: [PATCH 5/7] skip on darwin and lower timeout again --- lib/lookup.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lookup.json b/lib/lookup.json index 17ec2d48e..cdbf2d3bc 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -250,8 +250,8 @@ "yarn": true, "scripts": ["build:js", "test-ci-partial"], "envVar": { "CI": true }, - "skip": ["aix", "s390x", "ppc", "10.x"], - "timeout": 3600000 + "skip": ["aix", "s390x", "ppc", "10.x", "darwin"], + "timeout": 180000 }, "jquery": { "skip": "win32", From 568641e823f06955088cdc83ffad7ae5dbb4d524 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 21 Oct 2020 12:15:25 +0200 Subject: [PATCH 6/7] whoops, not that much --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index cdbf2d3bc..bbbefb755 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -251,7 +251,7 @@ "scripts": ["build:js", "test-ci-partial"], "envVar": { "CI": true }, "skip": ["aix", "s390x", "ppc", "10.x", "darwin"], - "timeout": 180000 + "timeout": 1800000 }, "jquery": { "skip": "win32", From bfaba7a1418ae8658292c87aa55620e82b9e9edd Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 6 Mar 2021 20:10:06 +0100 Subject: [PATCH 7/7] skip windows --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index bbbefb755..72cdd08e5 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -250,7 +250,7 @@ "yarn": true, "scripts": ["build:js", "test-ci-partial"], "envVar": { "CI": true }, - "skip": ["aix", "s390x", "ppc", "10.x", "darwin"], + "skip": ["aix", "s390x", "ppc", "10.x", "darwin", "win32"], "timeout": 1800000 }, "jquery": {