2021-08-24 18:57:17 +00:00
|
|
|
import * as core from '@actions/core'
|
2021-11-05 12:54:31 +00:00
|
|
|
import * as cache from '@actions/cache'
|
2021-09-06 03:35:17 +00:00
|
|
|
import * as crypto from 'crypto'
|
2021-09-28 03:05:17 +00:00
|
|
|
import * as path from 'path'
|
2021-10-04 21:59:08 +00:00
|
|
|
import * as fs from 'fs'
|
2021-08-24 18:57:17 +00:00
|
|
|
|
2022-01-19 19:11:51 +00:00
|
|
|
import {CacheEntryListener} from './cache-reporting'
|
|
|
|
|
2021-12-07 23:52:53 +00:00
|
|
|
const JOB_CONTEXT_PARAMETER = 'workflow-job-context'
|
2021-10-27 22:05:07 +00:00
|
|
|
const CACHE_DISABLED_PARAMETER = 'cache-disabled'
|
|
|
|
const CACHE_READONLY_PARAMETER = 'cache-read-only'
|
2022-01-20 16:36:57 +00:00
|
|
|
const CACHE_WRITEONLY_PARAMETER = 'cache-write-only'
|
2021-10-27 22:05:07 +00:00
|
|
|
const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED'
|
|
|
|
const CACHE_PREFIX_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX'
|
|
|
|
|
2021-09-12 20:26:38 +00:00
|
|
|
export function isCacheDisabled(): boolean {
|
2021-10-27 22:05:07 +00:00
|
|
|
return core.getBooleanInput(CACHE_DISABLED_PARAMETER)
|
2021-08-24 18:57:17 +00:00
|
|
|
}
|
|
|
|
|
2021-09-12 20:26:38 +00:00
|
|
|
export function isCacheReadOnly(): boolean {
|
2021-10-27 22:05:07 +00:00
|
|
|
return core.getBooleanInput(CACHE_READONLY_PARAMETER)
|
2021-08-24 18:57:17 +00:00
|
|
|
}
|
2021-09-05 23:10:47 +00:00
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
export function isCacheWriteOnly(): boolean {
|
|
|
|
return core.getBooleanInput(CACHE_WRITEONLY_PARAMETER)
|
|
|
|
}
|
|
|
|
|
2021-09-12 20:08:22 +00:00
|
|
|
export function isCacheDebuggingEnabled(): boolean {
|
2021-10-27 22:05:07 +00:00
|
|
|
return process.env[CACHE_DEBUG_VAR] ? true : false
|
2021-09-12 20:08:22 +00:00
|
|
|
}
|
|
|
|
|
2021-10-16 15:44:35 +00:00
|
|
|
export function getCacheKeyPrefix(): string {
|
2021-10-16 14:33:42 +00:00
|
|
|
// Prefix can be used to force change all cache keys (defaults to cache protocol version)
|
2021-11-28 17:19:56 +00:00
|
|
|
return process.env[CACHE_PREFIX_VAR] || ''
|
2021-10-16 15:44:35 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 23:52:53 +00:00
|
|
|
export function determineJobContext(): string {
|
|
|
|
// By default, we hash the full `matrix` data for the run, to uniquely identify this job invocation
|
|
|
|
// The only way we can obtain the `matrix` data is via the `workflow-job-context` parameter in action.yml.
|
|
|
|
const workflowJobContext = core.getInput(JOB_CONTEXT_PARAMETER)
|
|
|
|
return hashStrings([workflowJobContext])
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hashFileNames(fileNames: string[]): string {
|
|
|
|
return hashStrings(fileNames.map(x => x.replace(new RegExp(`\\${path.sep}`, 'g'), '/')))
|
|
|
|
}
|
|
|
|
|
2021-09-06 03:35:17 +00:00
|
|
|
export function hashStrings(values: string[]): string {
|
|
|
|
const hash = crypto.createHash('md5')
|
|
|
|
for (const value of values) {
|
|
|
|
hash.update(value)
|
|
|
|
}
|
|
|
|
return hash.digest('hex')
|
2021-09-05 23:10:47 +00:00
|
|
|
}
|
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
export async function restoreCache(
|
|
|
|
cachePath: string[],
|
|
|
|
cacheKey: string,
|
2022-01-19 19:11:51 +00:00
|
|
|
cacheRestoreKeys: string[],
|
|
|
|
listener: CacheEntryListener
|
2021-12-29 23:07:33 +00:00
|
|
|
): Promise<cache.CacheEntry | undefined> {
|
2022-01-19 19:11:51 +00:00
|
|
|
listener.markRequested(cacheKey, cacheRestoreKeys)
|
2021-12-29 23:07:33 +00:00
|
|
|
try {
|
2022-01-19 19:11:51 +00:00
|
|
|
const restoredEntry = await cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys)
|
|
|
|
if (restoredEntry !== undefined) {
|
|
|
|
listener.markRestored(restoredEntry.key, restoredEntry.size)
|
|
|
|
}
|
|
|
|
return restoredEntry
|
2021-12-29 23:07:33 +00:00
|
|
|
} catch (error) {
|
|
|
|
handleCacheFailure(error, `Failed to restore ${cacheKey}`)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-19 19:11:51 +00:00
|
|
|
export async function saveCache(cachePath: string[], cacheKey: string, listener: CacheEntryListener): Promise<void> {
|
2021-12-29 23:07:33 +00:00
|
|
|
try {
|
2022-01-19 19:11:51 +00:00
|
|
|
const savedEntry = await cache.saveCache(cachePath, cacheKey)
|
|
|
|
listener.markSaved(savedEntry.key, savedEntry.size)
|
2021-12-29 23:07:33 +00:00
|
|
|
} catch (error) {
|
2022-01-19 19:11:51 +00:00
|
|
|
if (error instanceof cache.ReserveCacheError) {
|
|
|
|
listener.markAlreadyExists(cacheKey)
|
|
|
|
}
|
2021-12-29 23:07:33 +00:00
|
|
|
handleCacheFailure(error, `Failed to save cache entry ${cacheKey}`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function cacheDebug(message: string): void {
|
|
|
|
if (isCacheDebuggingEnabled()) {
|
|
|
|
core.info(message)
|
|
|
|
} else {
|
|
|
|
core.debug(message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-05 12:54:31 +00:00
|
|
|
export function handleCacheFailure(error: unknown, message: string): void {
|
|
|
|
if (error instanceof cache.ValidationError) {
|
|
|
|
// Fail on cache validation errors
|
|
|
|
throw error
|
|
|
|
}
|
|
|
|
if (error instanceof cache.ReserveCacheError) {
|
|
|
|
// Reserve cache errors are expected if the artifact has been previously cached
|
2022-01-19 20:31:55 +00:00
|
|
|
core.info(`${message}: ${error}`)
|
2021-11-05 12:54:31 +00:00
|
|
|
} else {
|
|
|
|
// Warn on all other errors
|
|
|
|
core.warning(`${message}: ${error}`)
|
2022-03-18 19:53:28 +00:00
|
|
|
if (error instanceof Error && error.stack) {
|
|
|
|
cacheDebug(error.stack)
|
|
|
|
}
|
2021-11-05 12:54:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-04 21:59:08 +00:00
|
|
|
/**
|
2021-10-15 20:54:29 +00:00
|
|
|
* Attempt to delete a file or directory, waiting to allow locks to be released
|
2021-10-04 21:59:08 +00:00
|
|
|
*/
|
|
|
|
export async function tryDelete(file: string): Promise<void> {
|
2021-10-15 20:54:29 +00:00
|
|
|
const stat = fs.lstatSync(file)
|
2021-10-04 21:59:08 +00:00
|
|
|
for (let count = 0; count < 3; count++) {
|
|
|
|
try {
|
2021-10-15 20:54:29 +00:00
|
|
|
if (stat.isDirectory()) {
|
|
|
|
fs.rmdirSync(file, {recursive: true})
|
|
|
|
} else {
|
|
|
|
fs.unlinkSync(file)
|
|
|
|
}
|
2021-10-04 21:59:08 +00:00
|
|
|
return
|
|
|
|
} catch (error) {
|
|
|
|
if (count === 2) {
|
|
|
|
throw error
|
|
|
|
} else {
|
|
|
|
core.warning(String(error))
|
|
|
|
await delay(1000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function delay(ms: number): Promise<void> {
|
|
|
|
return new Promise(resolve => setTimeout(resolve, ms))
|
|
|
|
}
|