From 3ce9ec765181d169b0080cc1d6a7a537ecbbf695 Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry Date: Mon, 3 Feb 2025 10:26:58 +0100 Subject: [PATCH] Testing - Marking failed code formatting #332 --- .github/actions/clang-format-check/action.yml | 2 ++ .github/workflows/build-and-test-multiplatform.yml | 7 ------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/actions/clang-format-check/action.yml b/.github/actions/clang-format-check/action.yml index 9f23090ccc..cfff1adf0b 100644 --- a/.github/actions/clang-format-check/action.yml +++ b/.github/actions/clang-format-check/action.yml @@ -61,7 +61,9 @@ runs: run: | git diff > format.patch if ((Get-Item format.patch).length -gt 0) { + echo "::error::Files need formatting. To fix: 1. Download format.patch 2. \"git apply format.patch\" 3. Commit and push" echo "has_changes=true" >> $env:GITHUB_OUTPUT + exit 1 } - name: Upload patch diff --git a/.github/workflows/build-and-test-multiplatform.yml b/.github/workflows/build-and-test-multiplatform.yml index 7bc0eabf33..1cd4fd3963 100644 --- a/.github/workflows/build-and-test-multiplatform.yml +++ b/.github/workflows/build-and-test-multiplatform.yml @@ -33,13 +33,6 @@ jobs: with: base-ref: ${{ github.event.pull_request.base.ref || 'master' }} - - name: Fail if changes needed - if: steps.clang-format-check.outputs.has-changes == 'true' - shell: pwsh - run: | - echo "::error::Files need formatting. To fix: 1. Download format.patch 2. \"git apply format.patch\" 3. Commit and push" - exit 1 - prepare-and-build-windows-x64: name: Prepare and Build on Windows with MSVC (x64) runs-on: windows-2022