2021-09-06 17:16:08 +00:00
|
|
|
import {GradleUserHomeCache} from './cache-gradle-user-home'
|
|
|
|
import {ProjectDotGradleCache} from './cache-project-dot-gradle'
|
2021-08-20 19:01:43 +00:00
|
|
|
import * as core from '@actions/core'
|
2021-10-29 16:19:35 +00:00
|
|
|
import {CachingReport, isCacheDisabled, isCacheReadOnly} from './cache-utils'
|
2021-08-20 19:01:43 +00:00
|
|
|
|
|
|
|
const BUILD_ROOT_DIR = 'BUILD_ROOT_DIR'
|
|
|
|
|
|
|
|
export async function restore(buildRootDirectory: string): Promise<void> {
|
2021-09-12 20:26:38 +00:00
|
|
|
if (isCacheDisabled()) {
|
2021-10-29 13:34:44 +00:00
|
|
|
core.info('Cache is disabled: will not restore state from previous builds.')
|
2021-09-06 01:55:49 +00:00
|
|
|
return
|
|
|
|
}
|
2021-09-03 17:25:55 +00:00
|
|
|
|
2021-09-06 19:23:36 +00:00
|
|
|
await core.group('Restore Gradle state from cache', async () => {
|
|
|
|
core.saveState(BUILD_ROOT_DIR, buildRootDirectory)
|
2021-10-29 16:19:35 +00:00
|
|
|
|
|
|
|
const cachingReport = new CachingReport()
|
|
|
|
|
|
|
|
await new GradleUserHomeCache(buildRootDirectory).restore(cachingReport)
|
2021-10-29 14:44:08 +00:00
|
|
|
|
|
|
|
const projectDotGradleCache = new ProjectDotGradleCache(buildRootDirectory)
|
2021-10-29 16:19:35 +00:00
|
|
|
if (cachingReport.fullyRestored) {
|
2021-10-29 14:44:08 +00:00
|
|
|
// Only restore the configuration-cache if the Gradle Home is fully restored
|
2021-10-29 16:19:35 +00:00
|
|
|
await projectDotGradleCache.restore(cachingReport)
|
2021-10-29 14:44:08 +00:00
|
|
|
} else {
|
|
|
|
// Otherwise, prepare the cache key for later save()
|
|
|
|
projectDotGradleCache.prepareCacheKey()
|
|
|
|
}
|
2021-09-06 19:23:36 +00:00
|
|
|
})
|
2021-08-20 19:01:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export async function save(): Promise<void> {
|
2021-09-12 20:26:38 +00:00
|
|
|
if (isCacheReadOnly()) {
|
2021-10-29 13:34:44 +00:00
|
|
|
core.info('Cache is read-only: will not save state for use in subsequent builds.')
|
2021-09-06 01:55:49 +00:00
|
|
|
return
|
|
|
|
}
|
2021-09-03 17:25:55 +00:00
|
|
|
|
2021-09-06 19:23:36 +00:00
|
|
|
await core.group('Caching Gradle state', async () => {
|
|
|
|
const buildRootDirectory = core.getState(BUILD_ROOT_DIR)
|
|
|
|
return Promise.all([
|
2021-09-28 02:57:47 +00:00
|
|
|
new GradleUserHomeCache(buildRootDirectory).save(),
|
2021-09-06 19:23:36 +00:00
|
|
|
new ProjectDotGradleCache(buildRootDirectory).save()
|
|
|
|
])
|
|
|
|
})
|
2021-08-20 19:01:43 +00:00
|
|
|
}
|