mirror of
https://github.com/actions/setup-python.git
synced 2025-07-23 22:18:20 +02:00
Add support for graalpy
This commit is contained in:
parent
f97b83114c
commit
ad7b7ba29e
7 changed files with 6841 additions and 0 deletions
10
src/utils.ts
10
src/utils.ts
|
@ -29,6 +29,16 @@ export interface IPyPyManifestRelease {
|
|||
files: IPyPyManifestAsset[];
|
||||
}
|
||||
|
||||
export interface IGraalPyManifestAsset {
|
||||
name: string;
|
||||
browser_download_url: string;
|
||||
}
|
||||
|
||||
export interface IGraalPyManifestRelease {
|
||||
tag_name: string;
|
||||
assets: IGraalPyManifestAsset[];
|
||||
}
|
||||
|
||||
/** create Symlinks for downloaded PyPy
|
||||
* It should be executed only for downloaded versions in runtime, because
|
||||
* toolcache versions have this setup.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue