Skip to content
Snippets Groups Projects
Unverified Commit b53e5e40 authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

refactor(bundler): Use util function for cache dir creation (#10586)

parent 1df94a25
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,10 @@ describe('bundler.updateArtifacts()', () => { ...@@ -46,6 +46,10 @@ describe('bundler.updateArtifacts()', () => {
docker.resetPrefetchedImages(); docker.resetPrefetchedImages();
setAdminConfig(adminConfig); setAdminConfig(adminConfig);
fs.ensureCacheDir.mockResolvedValueOnce(
join(adminConfig.cacheDir, './others/gem')
);
}); });
afterEach(() => { afterEach(() => {
setAdminConfig(); setAdminConfig();
......
...@@ -10,6 +10,7 @@ import * as memCache from '../../util/cache/memory'; ...@@ -10,6 +10,7 @@ import * as memCache from '../../util/cache/memory';
import { ExecOptions, exec } from '../../util/exec'; import { ExecOptions, exec } from '../../util/exec';
import { import {
deleteLocalFile, deleteLocalFile,
ensureCacheDir,
getSiblingFileName, getSiblingFileName,
readLocalFile, readLocalFile,
writeLocalFile, writeLocalFile,
...@@ -22,7 +23,6 @@ import { ...@@ -22,7 +23,6 @@ import {
findAllAuthenticatable, findAllAuthenticatable,
getAuthenticationHeaderValue, getAuthenticationHeaderValue,
} from './host-rules'; } from './host-rules';
import { getGemHome } from './utils';
const hostConfigVariablePrefix = 'BUNDLE_'; const hostConfigVariablePrefix = 'BUNDLE_';
...@@ -169,11 +169,14 @@ export async function updateArtifacts( ...@@ -169,11 +169,14 @@ export async function updateArtifacts(
); );
} }
const cacheDir = await ensureCacheDir('./others/gem', 'GEM_HOME');
logger.debug(`Using gem home ${cacheDir}`);
const execOptions: ExecOptions = { const execOptions: ExecOptions = {
cwdFile: packageFileName, cwdFile: packageFileName,
extraEnv: { extraEnv: {
...bundlerHostRulesVariables, ...bundlerHostRulesVariables,
GEM_HOME: await getGemHome(config), GEM_HOME: cacheDir,
}, },
docker: { docker: {
image: 'ruby', image: 'ruby',
......
import { join } from 'upath';
import { getAdminConfig } from '../../config/admin';
import { logger } from '../../logger';
import { ensureDir } from '../../util/fs';
import type { UpdateArtifactsConfig } from '../types';
export async function getGemHome(
config: UpdateArtifactsConfig
): Promise<string> {
const cacheDir =
process.env.GEM_HOME || join(getAdminConfig().cacheDir, './others/gem');
await ensureDir(cacheDir);
logger.debug(`Using gem home ${cacheDir}`);
return cacheDir;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment