mirror of
https://github.com/actions/setup-java.git
synced 2025-04-19 17:36:45 +00:00
Merge pull request #339 from starburstdata/pp/fix-arm64-architecture
Fix support for Zulu arm64 architecture
This commit is contained in:
commit
62808131e1
4 changed files with 15 additions and 0 deletions
|
@ -133,6 +133,8 @@ export class ZuluDistribution extends JavaBase {
|
|||
return { arch: 'x86', hw_bitness: '64', abi: '' };
|
||||
} else if (this.architecture == 'x86') {
|
||||
return { arch: 'x86', hw_bitness: '32', abi: '' };
|
||||
} else if (this.architecture == 'arm64') {
|
||||
return { arch: 'arm', hw_bitness: '64', abi: '' };
|
||||
} else {
|
||||
return { arch: this.architecture, hw_bitness: '', abi: '' };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue