mirror of
https://github.com/actions/setup-java.git
synced 2026-08-25 16:00:54 +00:00
On Alpine, `getPlatformOption()` returned the glibc platform key for Dragonwell, Corretto, Zulu, Liberica and Liberica NIK, so the action resolved and installed a glibc JDK that cannot run under musl. Add a shared `isAlpineLinux()` helper and use it to select each vendor's musl artifacts: | distribution | glibc | musl | | ------------ | ------------- | -------------- | | Dragonwell | `linux` | `alpine-linux` | | Corretto | `linux` | `alpine` | | Zulu | `linux_glibc` | `linux_musl` | | Liberica | `linux` | `linux-musl` | | Liberica NIK | `linux` | `linux-musl` | Each key was verified against the vendor's live metadata API or manifest. There is deliberately no silent fallback to glibc when a vendor has no musl build for the requested version or architecture: the existing "could not find a version that satisfies" error fires instead. This matches the behaviour Temurin and SapMachine already have, and a glibc JDK would not run on musl anyway. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 74248bb0-72af-41d8-b85d-b0f5836e68db |
||
|---|---|---|
| .. | ||
| cache | ||
| data | ||
| distributors | ||
| auth.test.ts | ||
| benchmark-cache-restore.sh | ||
| cache-feature.test.ts | ||
| cache.test.ts | ||
| check-dir.sh | ||
| checksum.test.ts | ||
| cleanup-java.test.ts | ||
| gpg.test.ts | ||
| java-package-contract.test.ts | ||
| java-platform-contract.test.ts | ||
| jdk-cache.test.ts | ||
| jdk-resolution-cache.test.ts | ||
| maven-args.test.ts | ||
| maven-xml-loading.test.ts | ||
| problem-matcher.test.ts | ||
| retrying-http-client.test.ts | ||
| setup-java.module-loading.test.ts | ||
| setup-java.test.ts | ||
| toolchains.test.ts | ||
| util-install.test.ts | ||
| util.test.ts | ||
| verify-java.sh | ||