2022-06-12 15:53:04 +00:00
|
|
|
import * as exec from '@actions/exec'
|
|
|
|
import fs from 'fs'
|
|
|
|
import path from 'path'
|
|
|
|
|
|
|
|
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<void> {
|
2022-06-21 14:18:58 +00:00
|
|
|
// Reset the file-access journal so that files appear not to have been used recently
|
2022-06-12 15:53:04 +00:00
|
|
|
fs.rmSync(path.resolve(this.gradleUserHome, 'caches/journal-1'), {recursive: true, force: true})
|
|
|
|
fs.mkdirSync(path.resolve(this.gradleUserHome, 'caches/journal-1'), {recursive: true})
|
|
|
|
fs.writeFileSync(
|
|
|
|
path.resolve(this.gradleUserHome, 'caches/journal-1/file-access.properties'),
|
|
|
|
'inceptionTimestamp=0'
|
|
|
|
)
|
2022-06-21 14:18:58 +00:00
|
|
|
|
|
|
|
// Set the modification time of all files to the past: this timestamp is used when there is no matching entry in the journal
|
2022-06-12 15:53:04 +00:00
|
|
|
await this.ageAllFiles()
|
2022-06-21 14:18:58 +00:00
|
|
|
|
|
|
|
// Touch all 'gc' files so that cache cleanup won't run immediately.
|
2022-06-12 15:53:04 +00:00
|
|
|
await this.touchAllFiles('gc.properties')
|
|
|
|
}
|
|
|
|
|
|
|
|
async forceCleanup(): Promise<void> {
|
2022-06-21 14:18:58 +00:00
|
|
|
// Age all 'gc' files so that cache cleanup will run immediately.
|
2022-06-12 15:53:04 +00:00
|
|
|
await this.ageAllFiles('gc.properties')
|
|
|
|
|
2022-06-21 14:18:58 +00:00
|
|
|
// Run a dummy Gradle build to trigger cache cleanup
|
2022-06-12 15:53:04 +00:00
|
|
|
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, 'build.gradle'), 'task("noop") {}')
|
|
|
|
|
|
|
|
await exec.exec(`gradle -g ${this.gradleUserHome} --no-daemon --build-cache --no-scan --quiet noop`, [], {
|
|
|
|
cwd: cleanupProjectDir
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private async ageAllFiles(fileName = '*'): Promise<void> {
|
|
|
|
await exec.exec(
|
|
|
|
'find',
|
2022-08-25 16:07:51 +00:00
|
|
|
[this.gradleUserHome, '-name', fileName, '-exec', 'touch', '-m', '-t', '197001010000', '{}', '+'],
|
2022-06-12 15:53:04 +00:00
|
|
|
{}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
private async touchAllFiles(fileName = '*'): Promise<void> {
|
|
|
|
await exec.exec('find', [this.gradleUserHome, '-name', fileName, '-exec', 'touch', '-m', '{}', '+'], {})
|
|
|
|
}
|
|
|
|
}
|