From 9038dd4c08569a33f77e4f8823d7d359aa018a85 Mon Sep 17 00:00:00 2001 From: Tim Fischer Date: Thu, 30 May 2024 18:55:17 +0200 Subject: [PATCH] ci: Get rid of reviewdog --- .github/workflows/lint.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 35b5cfb5..74a93638 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,15 +27,16 @@ jobs: pip install . - name: Install bender uses: pulp-platform/pulp-actions/bender-install@v2 + - name: Install Verible + uses: chipsalliance/verible-actions-common/install-verible@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Make clean sources run: | - make clean pkg-sources FLOOGEN_ARGS="--no-format" + make clean pkg-sources - name: Format with verible - uses: chipsalliance/verible-formatter-action@main - with: - files: - ./hw/**/*.sv - github_token: ${{ secrets.GITHUB_TOKEN }} + run: | + verible-verilog-format --inplace hw/**/*.sv - name: Check clean run: | git status && test -z "$(git status --porcelain)" @@ -57,15 +58,16 @@ jobs: pip install . - name: Install bender uses: pulp-platform/pulp-actions/bender-install@v2 + - name: Install Verible + uses: chipsalliance/verible-actions-common/install-verible@main + with: + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Make clean sources run: | - make -B pkg-sources FLOOGEN_ARGS="--no-format" + make -B pkg-sources - name: Format with verible - uses: chipsalliance/verible-formatter-action@main - with: - files: - ./hw/**/*.sv - github_token: ${{ secrets.GITHUB_TOKEN }} + run: | + verible-verilog-format --inplace hw/**/*.sv - name: Check clean run: | git status && test -z "$(git status --porcelain)"