From bb8d247e1adbb1ba2d875a55422ae70ad8cada07 Mon Sep 17 00:00:00 2001 From: Zxilly <31370133+Zxilly@users.noreply.github.com> Date: Sun, 16 Feb 2025 05:30:44 +0800 Subject: [PATCH] feat: support s390x and powerpc (#289) This patch adds support for `s390x` and `powerpc`. According https://github.com/nodejs/node/blob/main/BUILDING.md#platform-list , only `powerpcle` available on Linux. So we always use `uv-powerpc64le-unknown-linux-gnu` --- dist/save-cache/index.js | 2 ++ dist/setup/index.js | 2 ++ src/utils/platforms.ts | 9 ++++++++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/dist/save-cache/index.js b/dist/save-cache/index.js index 68618eb..c15d9e9 100644 --- a/dist/save-cache/index.js +++ b/dist/save-cache/index.js @@ -91860,6 +91860,8 @@ function getArch() { ia32: "i686", x64: "x86_64", arm64: "aarch64", + s390x: "s390x", + ppc64: "powerpc64le", }; if (arch in archMapping) { return archMapping[arch]; diff --git a/dist/setup/index.js b/dist/setup/index.js index 07b7013..29ddfc2 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -95648,6 +95648,8 @@ function getArch() { ia32: "i686", x64: "x86_64", arm64: "aarch64", + s390x: "s390x", + ppc64: "powerpc64le", }; if (arch in archMapping) { return archMapping[arch]; diff --git a/src/utils/platforms.ts b/src/utils/platforms.ts index d9aeebe..b81078a 100644 --- a/src/utils/platforms.ts +++ b/src/utils/platforms.ts @@ -4,7 +4,12 @@ export type Platform = | "unknown-linux-musleabihf" | "apple-darwin" | "pc-windows-msvc"; -export type Architecture = "i686" | "x86_64" | "aarch64"; +export type Architecture = + | "i686" + | "x86_64" + | "aarch64" + | "s390x" + | "powerpc64le"; export function getArch(): Architecture | undefined { const arch = process.arch; @@ -12,6 +17,8 @@ export function getArch(): Architecture | undefined { ia32: "i686", x64: "x86_64", arm64: "aarch64", + s390x: "s390x", + ppc64: "powerpc64le", }; if (arch in archMapping) {