Skip to content

Commit e5b130e

Browse files
committed
disable cloud cache
1 parent 583a4e3 commit e5b130e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scripts/tasks/check.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const amountOfVCPUs = 8;
77

88
const parallel = `--parallel=${process.env.CI ? amountOfVCPUs - 1 : maxConcurrentTasks}`;
99

10-
const linkCommand = `npx nx run-many -t check ${parallel}`;
11-
const nolinkCommand = `npx nx run-many -t check -c production ${parallel}`;
10+
const linkCommand = `npx nx run-many --no-cloud -t check ${parallel}`;
11+
const nolinkCommand = `npx nx run-many --no-cloud -t check -c production ${parallel}`;
1212

1313
export const check: Task = {
1414
description: 'Typecheck the source code of the monorepo',

scripts/tasks/compile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ const amountOfVCPUs = 4;
1212
const parallel = `--parallel=${process.env.CI ? amountOfVCPUs - 1 : maxConcurrentTasks}`;
1313

1414
const linkedContents = `export * from '../../src/manager-api/index.ts';`;
15-
const linkCommand = `npx nx run-many -t build ${parallel}`;
16-
const noLinkCommand = `npx nx run-many -t build -c production ${parallel}`;
15+
const linkCommand = `npx nx run-many --no-cloud -t build ${parallel}`;
16+
const noLinkCommand = `npx nx run-many --no-cloud -t build -c production ${parallel}`;
1717

1818
export const compile: Task = {
1919
description: 'Compile the source code of the monorepo',

0 commit comments

Comments
 (0)