]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Stop formatting check and start using Ubuntu-24.04 for fuzzing 15287/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 11 Mar 2025 15:31:38 +0000 (16:31 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 11 Mar 2025 15:31:38 +0000 (16:31 +0100)
.github/workflows/formatting.yml [deleted file]
.github/workflows/fuzz.yml

diff --git a/.github/workflows/formatting.yml b/.github/workflows/formatting.yml
deleted file mode 100644 (file)
index e3ebcf1..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
----
-name: 'Verify source code formatting; check 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 source code formatting; check Makefile.am sort order
-    # on a ubuntu-20.04 VM
-    runs-on: ubuntu-20.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}
index afcf8898abbb2430efbc992b6b4e840b4fa36321..182013c75ca6b2a33b38c0fca8166cc21519db59 100644 (file)
@@ -6,7 +6,7 @@ permissions: # least privileges, see https://docs.github.com/en/actions/using-wo
 
 jobs:
   Fuzzing:
-    runs-on: ubuntu-20.04
+    runs-on: ubuntu-24.04
     steps:
     - uses: actions/checkout@v4
       with: