From d9106f68a349fe10819c1c0126f37cfa1a1bf714 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Thu, 2 Feb 2023 18:12:06 -0500 Subject: [PATCH] same for darwin+x86-64 --- scripts/get-platform.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/get-platform.ts b/scripts/get-platform.ts index e201565d..35d449ab 100755 --- a/scripts/get-platform.ts +++ b/scripts/get-platform.ts @@ -21,7 +21,9 @@ let testMatrix: { os: string | string[], container: string | undefined }[] switch(platform) { case "darwin+x86-64": os = "macos-11" - buildOs = ["self-hosted", "macOS", "X64"] + // Using GHA resources for now, until we resolve network issues with our runners + // buildOs = ["self-hosted", "macOS", "X64"] + buildOs = os testMatrix = [{ os, container: undefined }] break case "darwin+aarch64":