From 617aa2bbc79d10e461f81263baf2460f2bf6cb5e Mon Sep 17 00:00:00 2001 From: Joseph Yaksich Date: Sat, 1 Aug 2026 20:14:56 +0000 Subject: [PATCH] Scope Linux connector regression to Linux --- test/connectors.mjs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/connectors.mjs b/test/connectors.mjs index c442cee..b25dabf 100644 --- a/test/connectors.mjs +++ b/test/connectors.mjs @@ -21,6 +21,10 @@ test("Linux release packaging ships pinned connectors for every supported host a }); test("Linux service working directory resolves the bundled connector without a legacy app-root environment", async (t) => { + if (process.platform !== "linux") { + t.skip("Linux systemd working-directory contract"); + return; + } const root = await mkdtemp(join(tmpdir(), "1helm-linux-connector-root-")); const resources = join(root, "resources"); const binary = join(resources, `cloudflared-linux-${process.arch}`);