mirror of
https://github.com/gradle/actions.git
synced 2025-08-27 20:57:59 +08:00
# Combined PRs ➡️📦⬅️ ✅ The following pull requests have been successfully combined on this PR: - Closes #498 Bump Gradle Wrapper from 8.11.1 to 8.12 in /.github/workflow-samples/kotlin-dsl - Closes #497 Bump Gradle Wrapper from 8.11.1 to 8.12 in /.github/workflow-samples/java-toolchain - Closes #496 Bump Gradle Wrapper from 8.11.1 to 8.12 in /.github/workflow-samples/groovy-dsl - Closes #495 Bump Gradle Wrapper from 8.11.1 to 8.12 in /.github/workflow-samples/gradle-plugin - Closes #494 Bump Gradle Wrapper from 8.11.1 to 8.12 in /sources/test/init-scripts > This PR was created by the [`github/combine-prs`](https://github.com/github/combine-prs) action --------- Signed-off-by: bot-githubaction <bot-githubaction@gradle.com> Co-authored-by: bot-githubaction <bot-githubaction@gradle.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: daz <daz@gradle.com>
86 lines
3.0 KiB
TypeScript
86 lines
3.0 KiB
TypeScript
import * as core from '@actions/core'
|
|
import * as exec from '@actions/exec'
|
|
|
|
import fs from 'fs'
|
|
import path from 'path'
|
|
import * as provisioner from '../execution/provision'
|
|
|
|
export class CacheCleaner {
|
|
private readonly gradleUserHome: string
|
|
private readonly tmpDir: string
|
|
|
|
constructor(gradleUserHome: string, tmpDir: string) {
|
|
this.gradleUserHome = gradleUserHome
|
|
this.tmpDir = tmpDir
|
|
}
|
|
|
|
async prepare(): Promise<string> {
|
|
// Save the current timestamp
|
|
const timestamp = Date.now().toString()
|
|
core.saveState('clean-timestamp', timestamp)
|
|
return timestamp
|
|
}
|
|
|
|
async forceCleanup(): Promise<void> {
|
|
const cleanTimestamp = core.getState('clean-timestamp')
|
|
await this.forceCleanupFilesOlderThan(cleanTimestamp)
|
|
}
|
|
|
|
// Visible for testing
|
|
async forceCleanupFilesOlderThan(cleanTimestamp: string): Promise<void> {
|
|
// Run a dummy Gradle build to trigger cache cleanup
|
|
const cleanupProjectDir = path.resolve(this.tmpDir, 'dummy-cleanup-project')
|
|
fs.mkdirSync(cleanupProjectDir, {recursive: true})
|
|
fs.writeFileSync(
|
|
path.resolve(cleanupProjectDir, 'settings.gradle'),
|
|
'rootProject.name = "dummy-cleanup-project"'
|
|
)
|
|
fs.writeFileSync(
|
|
path.resolve(cleanupProjectDir, 'init.gradle'),
|
|
`
|
|
beforeSettings { settings ->
|
|
def cleanupTime = ${cleanTimestamp}
|
|
|
|
settings.caches {
|
|
cleanup = Cleanup.ALWAYS
|
|
|
|
releasedWrappers.setRemoveUnusedEntriesOlderThan(cleanupTime)
|
|
snapshotWrappers.setRemoveUnusedEntriesOlderThan(cleanupTime)
|
|
downloadedResources.setRemoveUnusedEntriesOlderThan(cleanupTime)
|
|
createdResources.setRemoveUnusedEntriesOlderThan(cleanupTime)
|
|
buildCache.setRemoveUnusedEntriesOlderThan(cleanupTime)
|
|
}
|
|
}
|
|
`
|
|
)
|
|
fs.writeFileSync(path.resolve(cleanupProjectDir, 'build.gradle'), 'task("noop") {}')
|
|
|
|
// TODO: This is ineffective: we should be using the newest version of Gradle that ran a build, or a newer version if it's available on PATH.
|
|
const executable = await provisioner.provisionGradleAtLeast('8.12')
|
|
|
|
await core.group('Executing Gradle to clean up caches', async () => {
|
|
core.info(`Cleaning up caches last used before ${cleanTimestamp}`)
|
|
await this.executeCleanupBuild(executable, cleanupProjectDir)
|
|
})
|
|
}
|
|
|
|
private async executeCleanupBuild(executable: string, cleanupProjectDir: string): Promise<void> {
|
|
const args = [
|
|
'-g',
|
|
this.gradleUserHome,
|
|
'-I',
|
|
'init.gradle',
|
|
'--info',
|
|
'--no-daemon',
|
|
'--no-scan',
|
|
'--build-cache',
|
|
'-DGITHUB_DEPENDENCY_GRAPH_ENABLED=false',
|
|
'noop'
|
|
]
|
|
|
|
await exec.exec(executable, args, {
|
|
cwd: cleanupProjectDir
|
|
})
|
|
}
|
|
}
|