mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-25 21:03:06 +07:00
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
|
import {readdir} from 'node:fs/promises';
|
||
|
import {join} from 'node:path';
|
||
|
import * as cache from '@actions/cache';
|
||
|
import * as core from '@actions/core';
|
||
|
import * as glob from '@actions/glob';
|
||
|
|
||
|
import {getNuGetFolderPath} from './cache-utils';
|
||
|
import {lockFilePatterns, State, Outputs} from './constants';
|
||
|
|
||
|
export const restoreCache = async (cacheDependencyPath?: string) => {
|
||
|
const lockFilePath = cacheDependencyPath || (await findLockFile());
|
||
|
const fileHash = await glob.hashFiles(lockFilePath);
|
||
|
if (!fileHash) {
|
||
|
throw new Error(
|
||
|
'Some specified paths were not resolved, unable to cache dependencies.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const platform = process.env.RUNNER_OS;
|
||
|
const primaryKey = `dotnet-cache-${platform}-${fileHash}`;
|
||
|
core.debug(`primary key is ${primaryKey}`);
|
||
|
|
||
|
core.saveState(State.CachePrimaryKey, primaryKey);
|
||
|
|
||
|
const {'global-packages': cachePath} = await getNuGetFolderPath();
|
||
|
const cacheKey = await cache.restoreCache([cachePath], primaryKey);
|
||
|
core.setOutput(Outputs.CacheHit, Boolean(cacheKey));
|
||
|
|
||
|
if (!cacheKey) {
|
||
|
core.info('Dotnet cache is not found');
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
core.saveState(State.CacheMatchedKey, cacheKey);
|
||
|
core.info(`Cache restored from key: ${cacheKey}`);
|
||
|
};
|
||
|
|
||
|
const findLockFile = async () => {
|
||
|
const workspace = process.env.GITHUB_WORKSPACE!;
|
||
|
const rootContent = await readdir(workspace);
|
||
|
|
||
|
const lockFile = lockFilePatterns.find(item => rootContent.includes(item));
|
||
|
if (!lockFile) {
|
||
|
throw new Error(
|
||
|
`Dependencies lock file is not found in ${workspace}. Supported file patterns: ${lockFilePatterns.toString()}`
|
||
|
);
|
||
|
}
|
||
|
|
||
|
return join(workspace, lockFile);
|
||
|
};
|