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) {