feat: support s390x and powerpc

This commit is contained in:
Zxilly 2025-02-15 18:47:45 +00:00 committed by GitHub
parent 1ffa6dc3ad
commit 45f58ae383
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 1 deletions

2
dist/save-cache/index.js generated vendored
View file

@ -91860,6 +91860,8 @@ function getArch() {
ia32: "i686",
x64: "x86_64",
arm64: "aarch64",
s390x: "s390x",
ppc64: "powerpc64le",
};
if (arch in archMapping) {
return archMapping[arch];

2
dist/setup/index.js generated vendored
View file

@ -95648,6 +95648,8 @@ function getArch() {
ia32: "i686",
x64: "x86_64",
arm64: "aarch64",
s390x: "s390x",
ppc64: "powerpc64le",
};
if (arch in archMapping) {
return archMapping[arch];

View file

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