mirror of
https://github.com/actions/setup-java.git
synced 2025-07-18 12:38:20 +02:00
feat: add support for SapMachine JDK/JRE (#614)
Co-authored-by: Christian Schwaninger <christian.schwaninger@sap.com>
This commit is contained in:
parent
8e04ddff28
commit
7467385c61
9 changed files with 88071 additions and 8 deletions
33
src/distributions/sapmachine/models.ts
Normal file
33
src/distributions/sapmachine/models.ts
Normal file
|
@ -0,0 +1,33 @@
|
|||
export interface ISapMachineAllVersions {
|
||||
[major: string]: {
|
||||
lts: string,
|
||||
updates: {
|
||||
[full_version: string]: {
|
||||
[sapmachineBuild: string]: {
|
||||
release_url: string,
|
||||
ea: string,
|
||||
assets: {
|
||||
[packageType: string]: {
|
||||
[arch: string]: {
|
||||
[content_type: string]: {
|
||||
name: string,
|
||||
checksum: string,
|
||||
url: string
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
export interface ISapMachineVersions {
|
||||
os: string;
|
||||
architecture: string;
|
||||
version: string;
|
||||
checksum: string;
|
||||
downloadLink: string;
|
||||
packageType: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue