From bd9050746cec14c6f8c6d5bb4d1dff2e1482ace6 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sat, 26 Jul 2025 21:32:24 +0200 Subject: [PATCH] [CI] Remove CMake lint workflow configuration --- .github/workflows/cmake-lint.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/cmake-lint.yml diff --git a/.github/workflows/cmake-lint.yml b/.github/workflows/cmake-lint.yml deleted file mode 100644 index e8d50ff72..000000000 --- a/.github/workflows/cmake-lint.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: CMake Lint - -on: - pull_request: - paths: - - "**/CMakeLists.txt" - - "**/*.cmake" - push: - paths: - - "**/CMakeLists.txt" - - "**/*.cmake" - workflow_dispatch: - -jobs: - cmake-lint: - name: Check CMake formatting - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Install cmake-format - run: python3 -m pip install cmakelang - - name: Run cmake-format - run: | - files=$(git ls-files '**/CMakeLists.txt' 'cmake/*.cmake') - if ! cmake-format --check $files; then - echo "Formatting errors detected. Showing diff..." - for f in $files; do - cmake-format "$f" | diff -u "$f" - - done - exit 1 - fi