From: Arne Schwabe Date: Fri, 6 May 2022 13:28:35 +0000 (+0200) Subject: Add uncrustify check to github actions X-Git-Tag: v2.6_beta1~204 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2faa20caa48dc540a776acb17b6a9525bb60f3db;p=thirdparty%2Fopenvpn.git Add uncrustify check to github actions This adds checking if the code style is still clean github actions with the exact version of uncrustify that is required and might also be helpful for external commiters to get notified about code style problem when running the Github actions on their own repository. Signed-off-by: Arne Schwabe Acked-by: Gert Doering Message-Id: <20220506132836.1318985-1-arne@rfc2549.org> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg24300.html Signed-off-by: Gert Doering --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ac46a72cd..dd23b1426 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,6 +3,35 @@ name: Build on: [push, pull_request] jobs: + checkuncrustify: + name: "Check code style with Uncrustify" + # Ubuntu 22.04 has uncrustify 0.72_f + runs-on: ubuntu-22.04 + steps: + - name: Install dependencies + run: sudo apt update && sudo apt install -y uncrustify + - name: Checkout OpenVPN + uses: actions/checkout@v2 + with: + path: openvpn + - name: Show uncrustify version + run: uncrustify --version + - name: Run uncrustify + run: ./dev-tools/reformat-all.sh + working-directory: openvpn + - name: Check for changes + run: git diff --output=uncrustify-changes.patch + working-directory: openvpn + - name: Show changes on standard output + run: git diff + working-directory: openvpn + - uses: actions/upload-artifact@v2 + with: + name: uncrustify-changes.patch + path: 'openvpn/uncrustify-changes.patch' + - name: Set job status + run: test ! -s uncrustify-changes.patch + working-directory: openvpn mingw: strategy: fail-fast: false