Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(repo): turn on verbose logging #29623

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 16 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,18 @@ jobs:
executor: linux
environment:
NX_E2E_CI_CACHE_KEY: e2e-circleci-linux
NX_DAEMON: 'true'
NX_PERF_LOGGING: 'false'
NX_VERBOSE_LOGGING: 'false'
NX_NATIVE_LOGGING: 'false'
NX_DAEMON: 'false'
NX_PERF_LOGGING: 'true'
NX_VERBOSE_LOGGING: 'true'
lourw marked this conversation as resolved.
Show resolved Hide resolved
NX_CLOUD_DEBUG_URLS: 'true'
NX_NATIVE_LOGGING: 'true'
NX_E2E_RUN_E2E: 'true'
NX_CI_EXECUTION_ENV: 'linux'
NX_CLOUD_DTE_V2: 'true'
NX_CLOUD_DTE_SUMMARY: 'true'
NX_CLOUD_NO_TIMEOUTS: 'true'
NX_CLOUD_SKIP_WORKSPACE_DATA_CACHE: 'false'
lourw marked this conversation as resolved.
Show resolved Hide resolved
NX_FORCE_REUSE_CACHED_GRAPH: 'true'
lourw marked this conversation as resolved.
Show resolved Hide resolved
steps:
- checkout
- nx/set-shas:
Expand All @@ -101,6 +104,21 @@ jobs:
- browser-tools/install-chrome
- run-pnpm-install:
os: linux
- run:
name: Print env
command: echo $NX_CACHE_PROJECT_GRAPH
- run:
name: Print Workspace Cache
command: ls -lah .nx/workspace-data
- run:
name: Project Graph Cold
command: pnpm nx show projects
- run:
name: Print Workspace Cache 2
command: ls -lah .nx/workspace-data
- run:
name: Project Graph Warm
command: pnpm nx show projects
- run:
name: Check Documentation
command: pnpm nx documentation --no-dte
Expand Down
Loading