mirror of
https://github.com/actions/setup-go.git
synced 2025-04-03 18:27:29 +08:00
Merge 599dc9e0fa458a88a1678215ebf9233aac37941c into 0aaccfd150d50ccaeb58ebd88d36e91967a5f35b
This commit is contained in:
commit
0033e581fd
13
dist/setup/index.js
vendored
13
dist/setup/index.js
vendored
@ -93751,13 +93751,18 @@ function getArch(arch) {
|
||||
// 'arm', 'arm64', 'ia32', 'mips', 'mipsel', 'ppc', 'ppc64', 's390', 's390x', 'x32', and 'x64'.
|
||||
// wants amd64, 386, arm64, armv61, ppc641e, s390x
|
||||
// currently not supported by runner but future proofed mapping
|
||||
let endianness = os_1.default.endianness();
|
||||
switch (arch) {
|
||||
case 'x64':
|
||||
arch = 'amd64';
|
||||
break;
|
||||
// case 'ppc':
|
||||
// arch = 'ppc64';
|
||||
// break;
|
||||
case 'ppc64':
|
||||
if (endianness == 'LE') {
|
||||
arch = 'ppc64le';
|
||||
} else {
|
||||
arch = 'ppc64';
|
||||
}
|
||||
break;
|
||||
case 'x32':
|
||||
arch = '386';
|
||||
break;
|
||||
@ -95747,4 +95752,4 @@ const main_1 = __nccwpck_require__(399);
|
||||
|
||||
module.exports = __webpack_exports__;
|
||||
/******/ })()
|
||||
;
|
||||
;
|
||||
|
@ -20,13 +20,18 @@ export function getArch(arch: string): string {
|
||||
|
||||
// wants amd64, 386, arm64, armv61, ppc641e, s390x
|
||||
// currently not supported by runner but future proofed mapping
|
||||
let endianness: string = os.endianness();
|
||||
switch (arch) {
|
||||
case 'x64':
|
||||
arch = 'amd64';
|
||||
break;
|
||||
// case 'ppc':
|
||||
// arch = 'ppc64';
|
||||
// break;
|
||||
case 'ppc64':
|
||||
if (endianness == 'LE') {
|
||||
arch = 'ppc64le';
|
||||
} else {
|
||||
arch = 'ppc64';
|
||||
}
|
||||
break;
|
||||
case 'x32':
|
||||
arch = '386';
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user