mirror of
https://github.com/actions/setup-java
synced 2026-09-26 15:41:44 +02:00
Support Temurin on Linux RISC-V (#1269)
* Document Temurin RISC-V compatibility Co-Authored-By: multicode <multicode@yawk.at> * Expose RISC-V as a canonical architecture Co-Authored-By: multicode <multicode@yawk.at> * Support Temurin on Linux RISC-V Co-Authored-By: multicode <multicode@yawk.at> * Address RISC-V review feedback Co-Authored-By: multicode <multicode@yawk.at> * Fix casing for RISC-V architecture in tests Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Update __tests__/java-platform-contract.test.ts --------- Co-authored-by: multicode <multicode@yawk.at> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
co-authored by
multicode
Copilot Autofix powered by AI
parent
1aa87b638d
commit
97c5a5e13a
Vendored
+9
-1
@@ -31022,7 +31022,14 @@ function createUnsupportedPackageError(distributionName, packageType, supportedP
|
||||
|
||||
|
||||
const X64_ARM64 = ['x64', 'aarch64'];
|
||||
const STANDARD_LINUX = ['x64', 'x86', 'aarch64', 'ppc64le', 's390x'];
|
||||
const STANDARD_LINUX = [
|
||||
'x64',
|
||||
'x86',
|
||||
'aarch64',
|
||||
'ppc64le',
|
||||
'riscv64',
|
||||
's390x'
|
||||
];
|
||||
const JAVA_PLATFORM_CAPABILITIES = {
|
||||
[_package_types_js__WEBPACK_IMPORTED_MODULE_2__/* .JavaDistribution */ .zS.Temurin]: {
|
||||
platforms: {
|
||||
@@ -31164,6 +31171,7 @@ const CANONICAL_ARCHITECTURES = [
|
||||
'aarch64',
|
||||
'ppc64le',
|
||||
'ppc64',
|
||||
'riscv64',
|
||||
's390x'
|
||||
];
|
||||
const PLATFORM_ALIASES = {
|
||||
|
||||
Reference in New Issue
Block a user