@fairmint/canton-node-sdk
Version:
Canton Node SDK
29 lines (27 loc) • 912 B
text/typescript
// Copyright (c) 2024 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
import { awaitAllOrThrowAllExceptions, ensureStackSettingsAreUpToDate } from '../pulumi';
import { runSvCantonForAllMigrations } from './pulumi';
awaitAllOrThrowAllExceptions(
runSvCantonForAllMigrations(
'preview',
async (stack, migration, sv) => {
await ensureStackSettingsAreUpToDate(stack);
const preview = await stack.preview({
parallel: 128,
diff: true,
color: 'always',
});
console.log(`[migration=${migration.id}]Previewing stack for ${sv}`);
console.error(preview.stderr);
console.log(preview.stdout);
console.log(JSON.stringify(preview.changeSummary));
},
true,
true
)
).catch(err => {
console.error('Failed to run preview');
console.error(err);
process.exit(1);
});