From 41348bb5991d3187aec2f171b5a9beff7740c102 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:44:35 +0300 Subject: [PATCH 01/12] lookup: add astro --- lib/lookup.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/lookup.json b/lib/lookup.json index 13530b1f..17db4cf3 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -461,5 +461,16 @@ "skip": [">=21"], "expectFail": "fips", "maintainers": ["SBoudrias", "sindresorhus"] + }, + "astro": { + "scripts": [ + "build", + "test" + ], + "maintainers": "@princesseuh", + "prefix": "astro@", + "pnpm": true, + "tags": "latest", + "head": true } } From 810e9a3082fd6fb867a394525b0fe568f147b4be Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:45:12 +0300 Subject: [PATCH 02/12] use build:ci --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index 17db4cf3..14b7cb20 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -464,7 +464,7 @@ }, "astro": { "scripts": [ - "build", + "build:ci", "test" ], "maintainers": "@princesseuh", From 17cf3b3b402dd136f45c0dacd99f3ba478765579 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:52:29 +0300 Subject: [PATCH 03/12] chore: sort lookup.json --- lib/lookup.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/lookup.json b/lib/lookup.json index 14b7cb20..7832c411 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -40,6 +40,17 @@ "skip": "win32", "maintainers": "dominictarr" }, + "astro": { + "scripts": [ + "build:ci", + "test" + ], + "maintainers": "@princesseuh", + "prefix": "astro@", + "pnpm": true, + "tags": "latest", + "head": true + }, "ava": { "prefix": "v", "skip": ["ppc", "win32", "x86", "rhel", "aix", "ia32"], @@ -461,16 +472,5 @@ "skip": [">=21"], "expectFail": "fips", "maintainers": ["SBoudrias", "sindresorhus"] - }, - "astro": { - "scripts": [ - "build:ci", - "test" - ], - "maintainers": "@princesseuh", - "prefix": "astro@", - "pnpm": true, - "tags": "latest", - "head": true } } From a606f4f0ba094f855435bc8bdad971f78827d255 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:09:05 +0300 Subject: [PATCH 04/12] lookup: change script to avoid cache --- lib/lookup.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lookup.json b/lib/lookup.json index 7832c411..47c9ad5e 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -42,8 +42,8 @@ }, "astro": { "scripts": [ - "build:ci", - "test" + "build:ci:no-cache", + "test:citgm" ], "maintainers": "@princesseuh", "prefix": "astro@", From 25209bdacec8265437356cd4765413443b94689e Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Sat, 6 Apr 2024 22:19:14 +0300 Subject: [PATCH 05/12] lookup: skipping aix for astro as it has `sharp` dep that is not supported there --- lib/lookup.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/lookup.json b/lib/lookup.json index 47c9ad5e..a98e46ef 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -47,6 +47,9 @@ ], "maintainers": "@princesseuh", "prefix": "astro@", + "skip": [ + "aix" + ], "pnpm": true, "tags": "latest", "head": true From 71a0a833cfbbbc75314426a8012a81596e6d2e40 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Sat, 6 Apr 2024 22:35:28 +0300 Subject: [PATCH 06/12] lookup: trigger ci From 2c0423d53edd6f7e3ffebc068f2d4c570d865892 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Sat, 6 Apr 2024 22:41:58 +0300 Subject: [PATCH 07/12] lookup: avoid telemetry for astro --- lib/lookup.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index a98e46ef..5a5415bc 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -52,7 +52,10 @@ ], "pnpm": true, "tags": "latest", - "head": true + "head": true, + "envVar": { + "DO_NOT_TRACK": "1" + } }, "ava": { "prefix": "v", From b3f94322a1ee55a82a334ccfe25b07dae27ac88c Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Sat, 6 Apr 2024 23:57:13 +0300 Subject: [PATCH 08/12] only run astro package tests --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index 5a5415bc..b7decbd7 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -43,7 +43,7 @@ "astro": { "scripts": [ "build:ci:no-cache", - "test:citgm" + "--filter=\"astro\" test" ], "maintainers": "@princesseuh", "prefix": "astro@", From 01e904ec378fa0ea09da6e351f99a68ad697bcc4 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Sun, 7 Apr 2024 01:30:58 +0300 Subject: [PATCH 09/12] lookup: run tests only for astro package --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index b7decbd7..0e55b9ae 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -43,7 +43,7 @@ "astro": { "scripts": [ "build:ci:no-cache", - "--filter=\"astro\" test" + "--filter=astro test" ], "maintainers": "@princesseuh", "prefix": "astro@", From bbe59051d7288d67b298d1093ef70f1b0860c39d Mon Sep 17 00:00:00 2001 From: Erika <3019731+Princesseuh@users.noreply.github.com> Date: Tue, 9 Apr 2024 06:36:35 -0400 Subject: [PATCH 10/12] Update lookup.json --- lib/lookup.json | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/lib/lookup.json b/lib/lookup.json index 0e55b9ae..2034efbd 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -41,21 +41,17 @@ "maintainers": "dominictarr" }, "astro": { - "scripts": [ - "build:ci:no-cache", - "--filter=astro test" - ], + "scripts": ["build:ci:no-cache", "test:citgm"], "maintainers": "@princesseuh", "prefix": "astro@", - "skip": [ - "aix" - ], + "skip": ["aix"], "pnpm": true, "tags": "latest", "head": true, "envVar": { - "DO_NOT_TRACK": "1" - } + "DO_NOT_TRACK": "1", + "TELEMETRY_DISABLED": true + }, }, "ava": { "prefix": "v", From 92b480a51a7a93bddd0870492f74031dd96ad4c2 Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Wed, 10 Apr 2024 21:28:32 +0300 Subject: [PATCH 11/12] remove trailing comma --- lib/lookup.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lookup.json b/lib/lookup.json index 2034efbd..b5443d9c 100644 --- a/lib/lookup.json +++ b/lib/lookup.json @@ -51,7 +51,7 @@ "envVar": { "DO_NOT_TRACK": "1", "TELEMETRY_DISABLED": true - }, + } }, "ava": { "prefix": "v", From ab0e90afbb7ff932c07ffdde24d4b519cbc404da Mon Sep 17 00:00:00 2001 From: Raz Luvaton <16746759+rluvaton@users.noreply.github.com> Date: Fri, 12 Apr 2024 01:04:53 +0300 Subject: [PATCH 12/12] trigger ci