mirror of
https://github.com/actions/setup-java.git
synced 2025-07-22 14:38:22 +02:00
Support Tencent Kona JDK (#672)
Signed-off-by: John Jiang <johnsjiang@tencent.com>
This commit is contained in:
parent
3a4f6e1af5
commit
6dd1e447fc
10 changed files with 4395 additions and 3617 deletions
25
src/distributions/kona/models.ts
Normal file
25
src/distributions/kona/models.ts
Normal file
|
@ -0,0 +1,25 @@
|
|||
export interface IKonaReleaseInfo {
|
||||
[majorVersion: string]: {
|
||||
version: string;
|
||||
jdkVersion: string;
|
||||
latest: boolean;
|
||||
|
||||
baseUrl: string;
|
||||
files: {
|
||||
os: string; // linux, macos, windows
|
||||
arch: string; // x86_64, aarch64
|
||||
|
||||
filename: string;
|
||||
checksum: string;
|
||||
}[];
|
||||
}[];
|
||||
}
|
||||
|
||||
export interface IKonaRelease {
|
||||
version: string;
|
||||
jdkVersion: string;
|
||||
os: string; // linux, macos, windows
|
||||
arch: string; // x86_64, aarch64
|
||||
downloadUrl: string;
|
||||
checksum: string; // SHA-256 digest
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue