Skip to content

Commit b6cb575

Browse files
committed
skip self-build-src-public-api when tsgo
1 parent 89bd7ff commit b6cb575

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/src/setupPipeline.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -448,10 +448,10 @@ function* transformPreset(parameters: Parameters, iter: Iterable<Scenario>, tsgo
448448

449449
function* worker(): Iterable<Scenario> {
450450
for (const scenario of iter) {
451-
if (tsgo && scenario.kind === "tsserver") {
452-
continue;
453-
}
454-
if (!tsgo && scenario.kind === "lsp") {
451+
if (
452+
(tsgo && (scenario.kind === "tsserver" || scenario.name === "self-build-src-public-api"))
453+
|| (!tsgo && scenario.kind === "lsp")
454+
) {
455455
continue;
456456
}
457457
if (scenario.kind === "startup") {

0 commit comments

Comments
 (0)