mirror of
https://github.com/actions/setup-java.git
synced 2025-06-28 20:14:14 +00:00
Add support for JetBrains' Amper build/cache
The Amper build system uses `.cache/Amper/` for its dependencies, and also (currently) uses some `.gradle/` folders for Android builds.
This commit is contained in:
parent
f4f1212c88
commit
9cedcca2cc
6 changed files with 146 additions and 2 deletions
9
dist/cleanup/index.js
vendored
9
dist/cleanup/index.js
vendored
|
@ -93140,6 +93140,15 @@ const supportedPackageManager = [
|
|||
'**/project/**.scala',
|
||||
'**/project/**.sbt'
|
||||
]
|
||||
},
|
||||
{
|
||||
id: 'amper',
|
||||
path: [
|
||||
(0, path_1.join)(os_1.default.homedir(), '.cache', 'Amper'),
|
||||
(0, path_1.join)(os_1.default.homedir(), '.gradle', 'caches'),
|
||||
(0, path_1.join)(os_1.default.homedir(), '.gradle', 'wrapper')
|
||||
],
|
||||
pattern: ['**/module.xml', 'amper', 'amper.bat', 'gradle/*.versions.toml']
|
||||
}
|
||||
];
|
||||
function getCoursierCachePath() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue