From 8a85efcfd62138c4aebde7d63af6e3437b05e510 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 17 Feb 2026 10:28:21 +0000 Subject: [PATCH] Switch CI nx outputStyle to stream-without-prefixes (#32530) * Add NX_SKIP_LOG_GROUPING to tests workflow * Switch CI nx outputStyle to stream-without-prefixes Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/workflows/build.yml | 2 +- .github/workflows/build_develop.yml | 2 +- .github/workflows/end-to-end-tests.yaml | 2 +- .github/workflows/static_analysis.yaml | 2 +- .github/workflows/tests.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c264064f5..4606da86b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ concurrency: env: # This must be set for fetchdep.sh to get the right branch PR_NUMBER: ${{ github.event.pull_request.number }} - NX_DEFAULT_OUTPUT_STYLE: static + NX_DEFAULT_OUTPUT_STYLE: stream-without-prefixes permissions: {} # No permissions required jobs: build: diff --git a/.github/workflows/build_develop.yml b/.github/workflows/build_develop.yml index f70f860005..07a5985de0 100644 --- a/.github/workflows/build_develop.yml +++ b/.github/workflows/build_develop.yml @@ -10,7 +10,7 @@ concurrency: group: ${{ github.repository_owner }}-${{ github.workflow }}-${{ github.ref_name }} cancel-in-progress: true env: - NX_DEFAULT_OUTPUT_STYLE: static + NX_DEFAULT_OUTPUT_STYLE: stream-without-prefixes permissions: {} jobs: build: diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index 532f99e0fc..13cea4c2d5 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -37,7 +37,7 @@ env: PR_NUMBER: ${{ github.event.pull_request.number }} # Use 6 runners in the default case, but 4 when running on a schedule where we run all 5 projects (20 runners total) NUM_RUNNERS: ${{ github.event_name == 'schedule' && 4 || 6 }} - NX_DEFAULT_OUTPUT_STYLE: static + NX_DEFAULT_OUTPUT_STYLE: stream-without-prefixes permissions: {} # No permissions required diff --git a/.github/workflows/static_analysis.yaml b/.github/workflows/static_analysis.yaml index 937b9f44ff..f90e7b71df 100644 --- a/.github/workflows/static_analysis.yaml +++ b/.github/workflows/static_analysis.yaml @@ -14,7 +14,7 @@ concurrency: env: # This must be set for fetchdep.sh to get the right branch PR_NUMBER: ${{ github.event.pull_request.number }} - NX_DEFAULT_OUTPUT_STYLE: static + NX_DEFAULT_OUTPUT_STYLE: stream-without-prefixes permissions: {} # No permissions required diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2be50c8f89..c51fa1fd44 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,7 +25,7 @@ env: ENABLE_COVERAGE: ${{ github.event_name != 'merge_group' && inputs.disable_coverage != 'true' }} # fetchdep.sh needs to know our PR number PR_NUMBER: ${{ github.event.pull_request.number }} - NX_DEFAULT_OUTPUT_STYLE: static + NX_DEFAULT_OUTPUT_STYLE: stream-without-prefixes permissions: {}