From 12e683eadd355cf416097b8c2356558f09f56f9d Mon Sep 17 00:00:00 2001 From: Otto Date: Fri, 26 Nov 2021 15:14:36 +0100 Subject: [PATCH] Alos drop formatting job from the global jobs: --- .circleci/config.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c8801a239f..2e6e4c15d8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -525,38 +525,6 @@ jobs: paths: - project - check-formatting: - docker: - - image: debian:bullseye - auth: - username: powerdnsreadonly - password: $DOCKERHUB_PASSWORD - steps: - - run: - name: Install dependencies - command: | - apt-get update && apt-get -qq --no-install-recommends install git - apt-get -qq --no-install-recommends install clang-format-11 - - get-workspace - - run: - name: Check formatting - command: | - ./build-scripts/format-code $(find . -type f -name '*.[ch][ch]' | sort | comm -23 - .not-formatted) - git --no-pager diff - exit $(git diff | wc -l) - working_directory: ~/project - - run: - name: Check Makefile.am SOURCES sort order - command: | - 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} - build-auth: docker: - image: debian:buster -- 2.47.2