mirror of
https://github.com/actions/setup-node.git
synced 2025-04-24 20:22:13 +00:00
Rename functions & add e2e tests
This commit is contained in:
parent
62a8f25abf
commit
7e070d0f46
6 changed files with 189 additions and 39 deletions
84
.github/workflows/e2e-cache.yml
vendored
84
.github/workflows/e2e-cache.yml
vendored
|
@ -146,7 +146,7 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: prepare sub-projects
|
- name: prepare sub-projects
|
||||||
run: __tests__/prepare-subprojects.sh
|
run: __tests__/prepare-yarn-subprojects.sh yarn1
|
||||||
|
|
||||||
# expect
|
# expect
|
||||||
# - no errors
|
# - no errors
|
||||||
|
@ -161,3 +161,85 @@ jobs:
|
||||||
cache-dependency-path: |
|
cache-dependency-path: |
|
||||||
**/*.lock
|
**/*.lock
|
||||||
yarn.lock
|
yarn.lock
|
||||||
|
|
||||||
|
yarn-subprojects-berry-local:
|
||||||
|
name: Test yarn subprojects all locally managed
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12, 14, 16]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: prepare sub-projects
|
||||||
|
run: __tests__/prepare-yarn-subprojects.sh
|
||||||
|
|
||||||
|
# expect
|
||||||
|
# - no errors
|
||||||
|
# - log
|
||||||
|
# ##[info]All dependencies are managed locally by yarn3, the previous cache can be used
|
||||||
|
# ##[debug]["node-cache-Linux-yarn-401024703386272f1a950c9f014cbb1bb79a7a5b6e1fb00e8b90d06734af41ee","node-cache-Linux-yarn"]
|
||||||
|
- name: Setup Node
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: |
|
||||||
|
sub2/*.lock
|
||||||
|
sub3/*.lock
|
||||||
|
|
||||||
|
yarn-subprojects-berry-global:
|
||||||
|
name: Test yarn subprojects some locally managed
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12, 14, 16]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: prepare sub-projects
|
||||||
|
run: __tests__/prepare-yarn-subprojects.sh global
|
||||||
|
|
||||||
|
# expect
|
||||||
|
# - no errors
|
||||||
|
# - log must
|
||||||
|
# ##[debug]"/home/runner/work/setup-node-test/setup-node-test/sub2" dependencies are managed by yarn 3 locally
|
||||||
|
# ##[debug]"/home/runner/work/setup-node-test/setup-node-test/sub3" dependencies are not managed by yarn 3 locally
|
||||||
|
- name: Setup Node
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: |
|
||||||
|
sub2/*.lock
|
||||||
|
sub3/*.lock
|
||||||
|
|
||||||
|
yarn-subprojects-berry-git:
|
||||||
|
name: Test yarn subprojects managed by git
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12, 14, 16]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: prepare sub-projects
|
||||||
|
run: /bin/bash __tests__/prepare-yarn-subprojects.sh keepcache
|
||||||
|
|
||||||
|
# expect
|
||||||
|
# - no errors
|
||||||
|
# - log
|
||||||
|
# [debug]"/home/runner/work/setup-node-test/setup-node-test/sub2" has .yarn/cache - dependencies are kept in the repository
|
||||||
|
# [debug]"/home/runner/work/setup-node-test/setup-node-test/sub3" has .yarn/cache - dependencies are kept in the repository
|
||||||
|
# [debug]["node-cache-Linux-yarn-401024703386272f1a950c9f014cbb1bb79a7a5b6e1fb00e8b90d06734af41ee"]
|
||||||
|
- name: Setup Node
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: |
|
||||||
|
sub2/*.lock
|
||||||
|
sub3/*.lock
|
||||||
|
|
|
@ -32,10 +32,20 @@ cat <<EOT >package.json
|
||||||
EOT
|
EOT
|
||||||
yarn set version 3.5.1
|
yarn set version 3.5.1
|
||||||
yarn install
|
yarn install
|
||||||
|
if [ x$1 = 'xglobal' ];then
|
||||||
|
echo enableGlobalCache
|
||||||
|
echo 'enableGlobalCache: true' >> .yarnrc.yml
|
||||||
|
fi
|
||||||
|
|
||||||
echo "create yarn1 project in the root"
|
|
||||||
cd ..
|
cd ..
|
||||||
cat <<EOT >package.json
|
if [ x$1 != 'xkeepcache' -a x$2 != 'xkeepcache' ]; then
|
||||||
|
rm -rf sub2/.yarn/cache
|
||||||
|
rm -rf sub3/.yarn/cache
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ x$1 = 'xyarn1' ];then
|
||||||
|
echo "create yarn1 project in the root"
|
||||||
|
cat <<EOT >package.json
|
||||||
{
|
{
|
||||||
"name": "subproject",
|
"name": "subproject",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -44,5 +54,6 @@ cat <<EOT >package.json
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EOT
|
EOT
|
||||||
yarn set version 1.22.19
|
yarn set version 1.22.19
|
||||||
yarn install
|
yarn install
|
||||||
|
fi
|
30
dist/cache-save/index.js
vendored
30
dist/cache-save/index.js
vendored
|
@ -60434,7 +60434,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.isCacheFeatureAvailable = exports.isGhes = exports.repoHasYarn3ManagedCache = exports.getCacheDirectories = exports.resetProjectDirectoriesMemoized = exports.getPackageManagerInfo = exports.getCommandOutputNotEmpty = exports.getCommandOutput = exports.supportedPackageManagers = void 0;
|
exports.isCacheFeatureAvailable = exports.isGhes = exports.repoHasYarnBerryManagedDependencies = exports.getCacheDirectories = exports.resetProjectDirectoriesMemoized = exports.getPackageManagerInfo = exports.getCommandOutputNotEmpty = exports.getCommandOutput = exports.supportedPackageManagers = void 0;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const exec = __importStar(__nccwpck_require__(1514));
|
const exec = __importStar(__nccwpck_require__(1514));
|
||||||
const cache = __importStar(__nccwpck_require__(7799));
|
const cache = __importStar(__nccwpck_require__(7799));
|
||||||
|
@ -60548,7 +60548,7 @@ const getProjectDirectoriesFromCacheDependencyPath = (cacheDependencyPath) => __
|
||||||
const getCacheDirectoriesFromCacheDependencyPath = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
const getCacheDirectoriesFromCacheDependencyPath = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const projectDirectories = yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath);
|
const projectDirectories = yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath);
|
||||||
const cacheFoldersPaths = yield Promise.all(projectDirectories.map((projectDirectory) => __awaiter(void 0, void 0, void 0, function* () {
|
const cacheFoldersPaths = yield Promise.all(projectDirectories.map((projectDirectory) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const cacheFolderPath = packageManagerInfo.getCacheFolderPath(projectDirectory);
|
const cacheFolderPath = yield packageManagerInfo.getCacheFolderPath(projectDirectory);
|
||||||
core.debug(`${packageManagerInfo.name}'s cache folder "${cacheFolderPath}" configured for the directory "${projectDirectory}"`);
|
core.debug(`${packageManagerInfo.name}'s cache folder "${cacheFolderPath}" configured for the directory "${projectDirectory}"`);
|
||||||
return cacheFolderPath;
|
return cacheFolderPath;
|
||||||
})));
|
})));
|
||||||
|
@ -60592,16 +60592,28 @@ exports.getCacheDirectories = getCacheDirectories;
|
||||||
* - if local cache is not explicitly enabled (not yarn3), return false
|
* - if local cache is not explicitly enabled (not yarn3), return false
|
||||||
* - return true otherwise
|
* - return true otherwise
|
||||||
*/
|
*/
|
||||||
const isCacheManagedByYarn3 = (directory) => __awaiter(void 0, void 0, void 0, function* () {
|
const projectHasYarnBerryManagedDependencies = (directory) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const workDir = directory || process.env.GITHUB_WORKSPACE || '.';
|
const workDir = directory || process.env.GITHUB_WORKSPACE || '.';
|
||||||
|
core.debug(`check if "${workDir}" has locally managed yarn3 dependencies`);
|
||||||
// if .yarn/cache directory exists the cache is managed by version control system
|
// if .yarn/cache directory exists the cache is managed by version control system
|
||||||
const yarnCacheFile = path_1.default.join(workDir, '.yarn', 'cache');
|
const yarnCacheFile = path_1.default.join(workDir, '.yarn', 'cache');
|
||||||
if (fs_1.default.existsSync(yarnCacheFile) && fs_1.default.lstatSync(yarnCacheFile).isDirectory())
|
if (fs_1.default.existsSync(yarnCacheFile) &&
|
||||||
|
fs_1.default.lstatSync(yarnCacheFile).isDirectory()) {
|
||||||
|
core.debug(`"${workDir}" has .yarn/cache - dependencies are kept in the repository`);
|
||||||
return Promise.resolve(false);
|
return Promise.resolve(false);
|
||||||
// NOTE: yarn1 returns 'undefined' with rc = 0
|
}
|
||||||
|
// NOTE: yarn1 returns 'undefined' with return code = 0
|
||||||
const enableGlobalCache = yield exports.getCommandOutput('yarn config get enableGlobalCache', workDir);
|
const enableGlobalCache = yield exports.getCommandOutput('yarn config get enableGlobalCache', workDir);
|
||||||
// only local cache is not managed by yarn
|
// only local cache is not managed by yarn
|
||||||
return enableGlobalCache === 'false';
|
const managed = enableGlobalCache.includes('false');
|
||||||
|
if (managed) {
|
||||||
|
core.debug(`"${workDir}" dependencies are managed by yarn 3 locally`);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
core.debug(`"${workDir}" dependencies are not managed by yarn 3 locally`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
/**
|
/**
|
||||||
* A function to report the repo contains Yarn managed projects
|
* A function to report the repo contains Yarn managed projects
|
||||||
|
@ -60610,16 +60622,16 @@ const isCacheManagedByYarn3 = (directory) => __awaiter(void 0, void 0, void 0, f
|
||||||
* expected to be the result of `core.getInput('cache-dependency-path')`
|
* expected to be the result of `core.getInput('cache-dependency-path')`
|
||||||
* @return - true if all project directories configured to be Yarn managed
|
* @return - true if all project directories configured to be Yarn managed
|
||||||
*/
|
*/
|
||||||
const repoHasYarn3ManagedCache = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
const repoHasYarnBerryManagedDependencies = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
if (packageManagerInfo.name !== 'yarn')
|
if (packageManagerInfo.name !== 'yarn')
|
||||||
return false;
|
return false;
|
||||||
const yarnDirs = cacheDependencyPath
|
const yarnDirs = cacheDependencyPath
|
||||||
? yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath)
|
? yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath)
|
||||||
: [''];
|
: [''];
|
||||||
const isManagedList = yield Promise.all(yarnDirs.map(isCacheManagedByYarn3));
|
const isManagedList = yield Promise.all(yarnDirs.map(projectHasYarnBerryManagedDependencies));
|
||||||
return isManagedList.every(Boolean);
|
return isManagedList.every(Boolean);
|
||||||
});
|
});
|
||||||
exports.repoHasYarn3ManagedCache = repoHasYarn3ManagedCache;
|
exports.repoHasYarnBerryManagedDependencies = repoHasYarnBerryManagedDependencies;
|
||||||
function isGhes() {
|
function isGhes() {
|
||||||
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
|
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
|
||||||
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
|
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
|
||||||
|
|
42
dist/setup/index.js
vendored
42
dist/setup/index.js
vendored
|
@ -71157,9 +71157,15 @@ const restoreCache = (packageManager, cacheDependencyPath) => __awaiter(void 0,
|
||||||
const primaryKey = `${keyPrefix}-${fileHash}`;
|
const primaryKey = `${keyPrefix}-${fileHash}`;
|
||||||
core.debug(`primary key is ${primaryKey}`);
|
core.debug(`primary key is ${primaryKey}`);
|
||||||
core.saveState(constants_1.State.CachePrimaryKey, primaryKey);
|
core.saveState(constants_1.State.CachePrimaryKey, primaryKey);
|
||||||
const cacheKey = (yield cache_utils_1.repoHasYarn3ManagedCache(packageManagerInfo, cacheDependencyPath))
|
const isManagedByYarnBerry = yield cache_utils_1.repoHasYarnBerryManagedDependencies(packageManagerInfo, cacheDependencyPath);
|
||||||
? yield cache.restoreCache(cachePaths, primaryKey, [keyPrefix])
|
let cacheKey;
|
||||||
: yield cache.restoreCache(cachePaths, primaryKey);
|
if (isManagedByYarnBerry) {
|
||||||
|
core.info('All dependencies are managed locally by yarn3, the previous cache can be used');
|
||||||
|
cacheKey = yield cache.restoreCache(cachePaths, primaryKey, [keyPrefix]);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
cacheKey = yield cache.restoreCache(cachePaths, primaryKey);
|
||||||
|
}
|
||||||
core.setOutput('cache-hit', Boolean(cacheKey));
|
core.setOutput('cache-hit', Boolean(cacheKey));
|
||||||
if (!cacheKey) {
|
if (!cacheKey) {
|
||||||
core.info(`${packageManager} cache is not found`);
|
core.info(`${packageManager} cache is not found`);
|
||||||
|
@ -71220,7 +71226,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
||||||
return (mod && mod.__esModule) ? mod : { "default": mod };
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.isCacheFeatureAvailable = exports.isGhes = exports.repoHasYarn3ManagedCache = exports.getCacheDirectories = exports.resetProjectDirectoriesMemoized = exports.getPackageManagerInfo = exports.getCommandOutputNotEmpty = exports.getCommandOutput = exports.supportedPackageManagers = void 0;
|
exports.isCacheFeatureAvailable = exports.isGhes = exports.repoHasYarnBerryManagedDependencies = exports.getCacheDirectories = exports.resetProjectDirectoriesMemoized = exports.getPackageManagerInfo = exports.getCommandOutputNotEmpty = exports.getCommandOutput = exports.supportedPackageManagers = void 0;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const exec = __importStar(__nccwpck_require__(1514));
|
const exec = __importStar(__nccwpck_require__(1514));
|
||||||
const cache = __importStar(__nccwpck_require__(7799));
|
const cache = __importStar(__nccwpck_require__(7799));
|
||||||
|
@ -71334,7 +71340,7 @@ const getProjectDirectoriesFromCacheDependencyPath = (cacheDependencyPath) => __
|
||||||
const getCacheDirectoriesFromCacheDependencyPath = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
const getCacheDirectoriesFromCacheDependencyPath = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const projectDirectories = yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath);
|
const projectDirectories = yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath);
|
||||||
const cacheFoldersPaths = yield Promise.all(projectDirectories.map((projectDirectory) => __awaiter(void 0, void 0, void 0, function* () {
|
const cacheFoldersPaths = yield Promise.all(projectDirectories.map((projectDirectory) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const cacheFolderPath = packageManagerInfo.getCacheFolderPath(projectDirectory);
|
const cacheFolderPath = yield packageManagerInfo.getCacheFolderPath(projectDirectory);
|
||||||
core.debug(`${packageManagerInfo.name}'s cache folder "${cacheFolderPath}" configured for the directory "${projectDirectory}"`);
|
core.debug(`${packageManagerInfo.name}'s cache folder "${cacheFolderPath}" configured for the directory "${projectDirectory}"`);
|
||||||
return cacheFolderPath;
|
return cacheFolderPath;
|
||||||
})));
|
})));
|
||||||
|
@ -71378,16 +71384,28 @@ exports.getCacheDirectories = getCacheDirectories;
|
||||||
* - if local cache is not explicitly enabled (not yarn3), return false
|
* - if local cache is not explicitly enabled (not yarn3), return false
|
||||||
* - return true otherwise
|
* - return true otherwise
|
||||||
*/
|
*/
|
||||||
const isCacheManagedByYarn3 = (directory) => __awaiter(void 0, void 0, void 0, function* () {
|
const projectHasYarnBerryManagedDependencies = (directory) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
const workDir = directory || process.env.GITHUB_WORKSPACE || '.';
|
const workDir = directory || process.env.GITHUB_WORKSPACE || '.';
|
||||||
|
core.debug(`check if "${workDir}" has locally managed yarn3 dependencies`);
|
||||||
// if .yarn/cache directory exists the cache is managed by version control system
|
// if .yarn/cache directory exists the cache is managed by version control system
|
||||||
const yarnCacheFile = path_1.default.join(workDir, '.yarn', 'cache');
|
const yarnCacheFile = path_1.default.join(workDir, '.yarn', 'cache');
|
||||||
if (fs_1.default.existsSync(yarnCacheFile) && fs_1.default.lstatSync(yarnCacheFile).isDirectory())
|
if (fs_1.default.existsSync(yarnCacheFile) &&
|
||||||
|
fs_1.default.lstatSync(yarnCacheFile).isDirectory()) {
|
||||||
|
core.debug(`"${workDir}" has .yarn/cache - dependencies are kept in the repository`);
|
||||||
return Promise.resolve(false);
|
return Promise.resolve(false);
|
||||||
// NOTE: yarn1 returns 'undefined' with rc = 0
|
}
|
||||||
|
// NOTE: yarn1 returns 'undefined' with return code = 0
|
||||||
const enableGlobalCache = yield exports.getCommandOutput('yarn config get enableGlobalCache', workDir);
|
const enableGlobalCache = yield exports.getCommandOutput('yarn config get enableGlobalCache', workDir);
|
||||||
// only local cache is not managed by yarn
|
// only local cache is not managed by yarn
|
||||||
return enableGlobalCache === 'false';
|
const managed = enableGlobalCache.includes('false');
|
||||||
|
if (managed) {
|
||||||
|
core.debug(`"${workDir}" dependencies are managed by yarn 3 locally`);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
core.debug(`"${workDir}" dependencies are not managed by yarn 3 locally`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
/**
|
/**
|
||||||
* A function to report the repo contains Yarn managed projects
|
* A function to report the repo contains Yarn managed projects
|
||||||
|
@ -71396,16 +71414,16 @@ const isCacheManagedByYarn3 = (directory) => __awaiter(void 0, void 0, void 0, f
|
||||||
* expected to be the result of `core.getInput('cache-dependency-path')`
|
* expected to be the result of `core.getInput('cache-dependency-path')`
|
||||||
* @return - true if all project directories configured to be Yarn managed
|
* @return - true if all project directories configured to be Yarn managed
|
||||||
*/
|
*/
|
||||||
const repoHasYarn3ManagedCache = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
const repoHasYarnBerryManagedDependencies = (packageManagerInfo, cacheDependencyPath) => __awaiter(void 0, void 0, void 0, function* () {
|
||||||
if (packageManagerInfo.name !== 'yarn')
|
if (packageManagerInfo.name !== 'yarn')
|
||||||
return false;
|
return false;
|
||||||
const yarnDirs = cacheDependencyPath
|
const yarnDirs = cacheDependencyPath
|
||||||
? yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath)
|
? yield getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath)
|
||||||
: [''];
|
: [''];
|
||||||
const isManagedList = yield Promise.all(yarnDirs.map(isCacheManagedByYarn3));
|
const isManagedList = yield Promise.all(yarnDirs.map(projectHasYarnBerryManagedDependencies));
|
||||||
return isManagedList.every(Boolean);
|
return isManagedList.every(Boolean);
|
||||||
});
|
});
|
||||||
exports.repoHasYarn3ManagedCache = repoHasYarn3ManagedCache;
|
exports.repoHasYarnBerryManagedDependencies = repoHasYarnBerryManagedDependencies;
|
||||||
function isGhes() {
|
function isGhes() {
|
||||||
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
|
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
|
||||||
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
|
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
|
||||||
|
|
|
@ -8,7 +8,7 @@ import {State} from './constants';
|
||||||
import {
|
import {
|
||||||
getCacheDirectories,
|
getCacheDirectories,
|
||||||
getPackageManagerInfo,
|
getPackageManagerInfo,
|
||||||
repoHasYarn3ManagedCache,
|
repoHasYarnBerryManagedDependencies,
|
||||||
PackageManagerInfo
|
PackageManagerInfo
|
||||||
} from './cache-utils';
|
} from './cache-utils';
|
||||||
|
|
||||||
|
@ -44,12 +44,19 @@ export const restoreCache = async (
|
||||||
|
|
||||||
core.saveState(State.CachePrimaryKey, primaryKey);
|
core.saveState(State.CachePrimaryKey, primaryKey);
|
||||||
|
|
||||||
const cacheKey = (await repoHasYarn3ManagedCache(
|
const isManagedByYarnBerry = await repoHasYarnBerryManagedDependencies(
|
||||||
packageManagerInfo,
|
packageManagerInfo,
|
||||||
cacheDependencyPath
|
cacheDependencyPath
|
||||||
))
|
);
|
||||||
? await cache.restoreCache(cachePaths, primaryKey, [keyPrefix])
|
let cacheKey: string | undefined;
|
||||||
: await cache.restoreCache(cachePaths, primaryKey);
|
if (isManagedByYarnBerry) {
|
||||||
|
core.info(
|
||||||
|
'All dependencies are managed locally by yarn3, the previous cache can be used'
|
||||||
|
);
|
||||||
|
cacheKey = await cache.restoreCache(cachePaths, primaryKey, [keyPrefix]);
|
||||||
|
} else {
|
||||||
|
cacheKey = await cache.restoreCache(cachePaths, primaryKey);
|
||||||
|
}
|
||||||
|
|
||||||
core.setOutput('cache-hit', Boolean(cacheKey));
|
core.setOutput('cache-hit', Boolean(cacheKey));
|
||||||
|
|
||||||
|
|
|
@ -171,8 +171,9 @@ const getCacheDirectoriesFromCacheDependencyPath = async (
|
||||||
);
|
);
|
||||||
const cacheFoldersPaths = await Promise.all(
|
const cacheFoldersPaths = await Promise.all(
|
||||||
projectDirectories.map(async projectDirectory => {
|
projectDirectories.map(async projectDirectory => {
|
||||||
const cacheFolderPath =
|
const cacheFolderPath = await packageManagerInfo.getCacheFolderPath(
|
||||||
packageManagerInfo.getCacheFolderPath(projectDirectory);
|
projectDirectory
|
||||||
|
);
|
||||||
core.debug(
|
core.debug(
|
||||||
`${packageManagerInfo.name}'s cache folder "${cacheFolderPath}" configured for the directory "${projectDirectory}"`
|
`${packageManagerInfo.name}'s cache folder "${cacheFolderPath}" configured for the directory "${projectDirectory}"`
|
||||||
);
|
);
|
||||||
|
@ -231,21 +232,38 @@ export const getCacheDirectories = async (
|
||||||
* - if local cache is not explicitly enabled (not yarn3), return false
|
* - if local cache is not explicitly enabled (not yarn3), return false
|
||||||
* - return true otherwise
|
* - return true otherwise
|
||||||
*/
|
*/
|
||||||
const isCacheManagedByYarn3 = async (directory: string): Promise<boolean> => {
|
const projectHasYarnBerryManagedDependencies = async (
|
||||||
|
directory: string
|
||||||
|
): Promise<boolean> => {
|
||||||
const workDir = directory || process.env.GITHUB_WORKSPACE || '.';
|
const workDir = directory || process.env.GITHUB_WORKSPACE || '.';
|
||||||
|
core.debug(`check if "${workDir}" has locally managed yarn3 dependencies`);
|
||||||
|
|
||||||
// if .yarn/cache directory exists the cache is managed by version control system
|
// if .yarn/cache directory exists the cache is managed by version control system
|
||||||
const yarnCacheFile = path.join(workDir, '.yarn', 'cache');
|
const yarnCacheFile = path.join(workDir, '.yarn', 'cache');
|
||||||
if (fs.existsSync(yarnCacheFile) && fs.lstatSync(yarnCacheFile).isDirectory())
|
if (
|
||||||
|
fs.existsSync(yarnCacheFile) &&
|
||||||
|
fs.lstatSync(yarnCacheFile).isDirectory()
|
||||||
|
) {
|
||||||
|
core.debug(
|
||||||
|
`"${workDir}" has .yarn/cache - dependencies are kept in the repository`
|
||||||
|
);
|
||||||
return Promise.resolve(false);
|
return Promise.resolve(false);
|
||||||
|
}
|
||||||
|
|
||||||
// NOTE: yarn1 returns 'undefined' with rc = 0
|
// NOTE: yarn1 returns 'undefined' with return code = 0
|
||||||
const enableGlobalCache = await getCommandOutput(
|
const enableGlobalCache = await getCommandOutput(
|
||||||
'yarn config get enableGlobalCache',
|
'yarn config get enableGlobalCache',
|
||||||
workDir
|
workDir
|
||||||
);
|
);
|
||||||
// only local cache is not managed by yarn
|
// only local cache is not managed by yarn
|
||||||
return enableGlobalCache === 'false';
|
const managed = enableGlobalCache.includes('false');
|
||||||
|
if (managed) {
|
||||||
|
core.debug(`"${workDir}" dependencies are managed by yarn 3 locally`);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
core.debug(`"${workDir}" dependencies are not managed by yarn 3 locally`);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -255,7 +273,7 @@ const isCacheManagedByYarn3 = async (directory: string): Promise<boolean> => {
|
||||||
* expected to be the result of `core.getInput('cache-dependency-path')`
|
* expected to be the result of `core.getInput('cache-dependency-path')`
|
||||||
* @return - true if all project directories configured to be Yarn managed
|
* @return - true if all project directories configured to be Yarn managed
|
||||||
*/
|
*/
|
||||||
export const repoHasYarn3ManagedCache = async (
|
export const repoHasYarnBerryManagedDependencies = async (
|
||||||
packageManagerInfo: PackageManagerInfo,
|
packageManagerInfo: PackageManagerInfo,
|
||||||
cacheDependencyPath: string
|
cacheDependencyPath: string
|
||||||
): Promise<boolean> => {
|
): Promise<boolean> => {
|
||||||
|
@ -265,7 +283,9 @@ export const repoHasYarn3ManagedCache = async (
|
||||||
? await getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath)
|
? await getProjectDirectoriesFromCacheDependencyPath(cacheDependencyPath)
|
||||||
: [''];
|
: [''];
|
||||||
|
|
||||||
const isManagedList = await Promise.all(yarnDirs.map(isCacheManagedByYarn3));
|
const isManagedList = await Promise.all(
|
||||||
|
yarnDirs.map(projectHasYarnBerryManagedDependencies)
|
||||||
|
);
|
||||||
|
|
||||||
return isManagedList.every(Boolean);
|
return isManagedList.every(Boolean);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue