From: Remi Gacogne Date: Tue, 12 Sep 2023 09:52:32 +0000 (+0200) Subject: Merge pull request #13101 from romeroalx/add-make-distdir X-Git-Tag: rec-5.0.0-alpha1~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c06629152f445a217b9df98e7b283b02eb3aee0;p=thirdparty%2Fpdns.git Merge pull request #13101 from romeroalx/add-make-distdir GH actions. build-and-test-all.yml: add make distdir as an additional step for build jobs --- 4c06629152f445a217b9df98e7b283b02eb3aee0 diff --cc .github/workflows/build-and-test-all.yml index cc239d4724,6ec3c79162..216f81b289 --- a/.github/workflows/build-and-test-all.yml +++ b/.github/workflows/build-and-test-all.yml @@@ -120,13 -133,17 +133,18 @@@ jobs path: ~/.ccache key: recursor-${{ matrix.sanitizers }}-ccache-${{ steps.get-stamp.outputs.stamp }} restore-keys: recursor-${{ matrix.sanitizers }}-ccache- + - run: inv ci-install-rust ${{ env.REPO_HOME }} - run: inv ci-autoconf + working-directory: ./pdns/recursordist/ + - run: inv ci-rec-configure + working-directory: ./pdns/recursordist/ + - run: inv ci-make-distdir + working-directory: ./pdns/recursordist/ - run: inv ci-rec-configure - run: inv ci-rec-make-bear - - run: ln -s ../../.clang-tidy.full .clang-tidy + - run: ln -s ../../../.clang-tidy.full .clang-tidy - name: Run clang-tidy - run: git diff -U0 HEAD^..HEAD | python3 ../../.github/scripts/git-filter.py | python3 /usr/bin/clang-tidy-diff-${CLANG_VERSION}.py -clang-tidy-binary /usr/bin/clang-tidy-${CLANG_VERSION} -extra-arg=-ferror-limit=0 -p3 -export-fixes clang-tidy-rec.yml + run: git diff -U0 HEAD^..HEAD | python3 ../../../.github/scripts/git-filter.py | python3 /usr/bin/clang-tidy-diff-${CLANG_VERSION}.py -clang-tidy-binary /usr/bin/clang-tidy-${CLANG_VERSION} -extra-arg=-ferror-limit=0 -p3 -export-fixes clang-tidy-rec.yml - name: Print clang-tidy fixes YAML shell: bash run: |