From: Remi Gacogne Date: Tue, 29 Apr 2025 07:29:36 +0000 (+0200) Subject: dnsdist-1.9.x: Remove the source code format check workflow X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bacdc5d367712a9f5af239cb331499464111616;p=thirdparty%2Fpdns.git dnsdist-1.9.x: Remove the source code format check workflow --- diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml deleted file mode 100644 index cf07f6b26d..0000000000 --- a/.github/workflows/formatting.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: 'Verify formatting and Makefile.am sort order' - -on: - push: - pull_request: - -permissions: # least privileges, see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions - contents: read - -jobs: - build: - name: verify formatting and Makefile.am sort order - # on a ubuntu-22.04 VM - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 5 - submodules: recursive - - name: Update dependencies - run: | - sudo apt-get update - sudo apt-get -qq --no-install-recommends install git clang-11 - - name: Run format-code on files that should be formatted - run: | - ./build-scripts/format-code $(find . -type f -name '*.[ch][ch]' | sort | comm -23 - .not-formatted) - git --no-pager diff - exit $(git diff | wc -l) - - name: Report file names that are out of order in Makefile.am files - run: | - exitcode=0 - for f in $(find . -type f -name 'Makefile.am'); do - ./build-scripts/test-sources-sorted.py ${f} - if [ $? -ne 0 ]; then - exitcode=1 - fi - done - exit ${exitcode}