mirror of
https://github.com/actions/setup-node.git
synced 2025-04-24 04:20:49 +00:00
adding support for linux-ppc64le
This commit is contained in:
parent
a4fcaaf314
commit
785951b47f
2 changed files with 4 additions and 0 deletions
2
dist/setup/index.js
vendored
2
dist/setup/index.js
vendored
|
@ -73562,6 +73562,8 @@ class BaseDistribution {
|
||||||
switch (arch) {
|
switch (arch) {
|
||||||
case 'arm':
|
case 'arm':
|
||||||
return 'armv7l';
|
return 'armv7l';
|
||||||
|
case 'ppc64':
|
||||||
|
return 'ppc64le';
|
||||||
default:
|
default:
|
||||||
return arch;
|
return arch;
|
||||||
}
|
}
|
||||||
|
|
|
@ -280,6 +280,8 @@ export default abstract class BaseDistribution {
|
||||||
switch (arch) {
|
switch (arch) {
|
||||||
case 'arm':
|
case 'arm':
|
||||||
return 'armv7l';
|
return 'armv7l';
|
||||||
|
case 'ppc64':
|
||||||
|
return 'ppc64le';
|
||||||
default:
|
default:
|
||||||
return arch;
|
return arch;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue