gradle-build-action/src/caches.ts

43 lines
1.6 KiB
TypeScript
Raw Normal View History

import {GradleUserHomeCache} from './cache-gradle-user-home'
import {ProjectDotGradleCache} from './cache-project-dot-gradle'
import * as core from '@actions/core'
import {isCacheDisabled, isCacheReadOnly} from './cache-utils'
const BUILD_ROOT_DIR = 'BUILD_ROOT_DIR'
export async function restore(buildRootDirectory: string): Promise<void> {
if (isCacheDisabled()) {
core.info('Cache is disabled: will not restore state from previous builds.')
2021-09-06 09:55:49 +08:00
return
}
2021-09-07 03:23:36 +08:00
await core.group('Restore Gradle state from cache', async () => {
core.saveState(BUILD_ROOT_DIR, buildRootDirectory)
const gradleHomeRestore = await new GradleUserHomeCache(buildRootDirectory).restore()
const projectDotGradleCache = new ProjectDotGradleCache(buildRootDirectory)
if (gradleHomeRestore.fullyRestored) {
// Only restore the configuration-cache if the Gradle Home is fully restored
await projectDotGradleCache.restore()
} else {
// Otherwise, prepare the cache key for later save()
projectDotGradleCache.prepareCacheKey()
}
2021-09-07 03:23:36 +08:00
})
}
export async function save(): Promise<void> {
if (isCacheReadOnly()) {
core.info('Cache is read-only: will not save state for use in subsequent builds.')
2021-09-06 09:55:49 +08:00
return
}
2021-09-07 03:23:36 +08:00
await core.group('Caching Gradle state', async () => {
const buildRootDirectory = core.getState(BUILD_ROOT_DIR)
return Promise.all([
new GradleUserHomeCache(buildRootDirectory).save(),
2021-09-07 03:23:36 +08:00
new ProjectDotGradleCache(buildRootDirectory).save()
])
})
}