Skip to content

Commit 7f30c4e

Browse files
evereqclaude
andcommitted
fix(ci): run Nx without Nx Cloud in CircleCI (org disabled)
The Nx Cloud organization is disabled, so 'yarn build:package:all' (nx run-many) hard-fails in CircleCI with 'Nx Cloud: Workspace is unable to be authorized. Exiting run.' — failing build-api/build-web/build-desktop on every PR and on develop. The rest of the repo already runs Nx locally (NX_NO_CLOUD=true in all GitHub workflows and Dockerfiles); CircleCI's config was stale. Adds NX_NO_CLOUD: true to the shared &defaults environment so all jobs inherit it. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 1851004 commit 7f30c4e

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,11 @@ defaults: &defaults
6969
NODE_OPTIONS: --max-old-space-size=12288
7070
# Disable Angular CLI analytics
7171
NG_CLI_ANALYTICS: false
72+
# Run Nx locally without Nx Cloud (the Nx Cloud org is disabled; the rest of
73+
# the repo — GitHub workflows + Dockerfiles — already sets NX_NO_CLOUD=true).
74+
# Without this, `nx run-many` hard-fails with "Nx Cloud: Workspace is unable
75+
# to be authorized. Exiting run."
76+
NX_NO_CLOUD: true
7277

7378
# ==============================================================================
7479
# Jobs

0 commit comments

Comments
 (0)