chore(repo): teardown local registry in case of setup error (#23470)
This commit is contained in:
parent
44429451c8
commit
b641852d9c
@ -2,12 +2,13 @@ import { Config } from '@jest/types';
|
|||||||
import { startLocalRegistry } from '@nx/js/plugins/jest/local-registry';
|
import { startLocalRegistry } from '@nx/js/plugins/jest/local-registry';
|
||||||
import { existsSync, removeSync } from 'fs-extra';
|
import { existsSync, removeSync } from 'fs-extra';
|
||||||
import * as isCI from 'is-ci';
|
import * as isCI from 'is-ci';
|
||||||
import { exec, execSync } from 'node:child_process';
|
import { exec } from 'node:child_process';
|
||||||
import { join } from 'node:path';
|
import { join } from 'node:path';
|
||||||
import { registerTsConfigPaths } from '../../packages/nx/src/plugins/js/utils/register';
|
import { registerTsConfigPaths } from '../../packages/nx/src/plugins/js/utils/register';
|
||||||
import { runLocalRelease } from '../../scripts/local-registry/populate-storage';
|
import { runLocalRelease } from '../../scripts/local-registry/populate-storage';
|
||||||
|
|
||||||
export default async function (globalConfig: Config.ConfigGlobals) {
|
export default async function (globalConfig: Config.ConfigGlobals) {
|
||||||
|
try {
|
||||||
const isVerbose: boolean =
|
const isVerbose: boolean =
|
||||||
process.env.NX_VERBOSE_LOGGING === 'true' || !!globalConfig.verbose;
|
process.env.NX_VERBOSE_LOGGING === 'true' || !!globalConfig.verbose;
|
||||||
|
|
||||||
@ -48,6 +49,14 @@ export default async function (globalConfig: Config.ConfigGlobals) {
|
|||||||
await runLocalRelease(publishVersion, isCI || isVerbose);
|
await runLocalRelease(publishVersion, isCI || isVerbose);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (err) {
|
||||||
|
// Clean up registry if possible after setup related errors
|
||||||
|
if (typeof global.e2eTeardown === 'function') {
|
||||||
|
global.e2eTeardown();
|
||||||
|
console.log('Killed local registry process due to an error during setup');
|
||||||
|
}
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getPublishedVersion(): Promise<string | undefined> {
|
function getPublishedVersion(): Promise<string | undefined> {
|
||||||
|
|||||||
@ -7,10 +7,11 @@ const {
|
|||||||
} = require('nx/src/executors/run-commands/run-commands.impl');
|
} = require('nx/src/executors/run-commands/run-commands.impl');
|
||||||
|
|
||||||
async function populateLocalRegistryStorage() {
|
async function populateLocalRegistryStorage() {
|
||||||
|
let registryTeardown;
|
||||||
try {
|
try {
|
||||||
const publishVersion = process.env.PUBLISHED_VERSION ?? 'major';
|
const publishVersion = process.env.PUBLISHED_VERSION ?? 'major';
|
||||||
const isVerbose = process.env.NX_VERBOSE_LOGGING === 'true';
|
const isVerbose = process.env.NX_VERBOSE_LOGGING === 'true';
|
||||||
const registryTeardown = await startLocalRegistry({
|
registryTeardown = await startLocalRegistry({
|
||||||
localRegistryTarget: '@nx/nx-source:local-registry',
|
localRegistryTarget: '@nx/nx-source:local-registry',
|
||||||
verbose: isVerbose,
|
verbose: isVerbose,
|
||||||
clearStorage: true,
|
clearStorage: true,
|
||||||
@ -22,6 +23,11 @@ async function populateLocalRegistryStorage() {
|
|||||||
registryTeardown();
|
registryTeardown();
|
||||||
console.log('Killed local registry process');
|
console.log('Killed local registry process');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
// Clean up registry if possible after setup related errors
|
||||||
|
if (typeof registryTeardown === 'function') {
|
||||||
|
registryTeardown();
|
||||||
|
console.log('Killed local registry process due to an error during setup');
|
||||||
|
}
|
||||||
console.error('Error:', err);
|
console.error('Error:', err);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user