From 5b0dbbfb8f6740c3e4065412c87eb4376b2611b8 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sat, 11 Jun 2022 01:41:34 +0300 Subject: [PATCH] =?UTF-8?q?build(ci):=20=F0=9F=9B=A0=20Depend=20test=20run?= =?UTF-8?q?s=20on=20clippy=20results?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 50 ++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 88fe112..a1b57b6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,9 +16,33 @@ jobs: - run: rustup toolchain install nightly --profile minimal --component rustfmt - run: cargo +nightly fmt -- --check + clippy: + name: "Clippy" + needs: check_formatting + strategy: + matrix: + features: [ + "", + "noserial", + "qemu", + "noserial,qemu", + "jtag", + "noserial,jtag", + # jtag and qemu together don't make much sense + ] + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v1 + - run: sudo apt update + - run: sudo apt install libudev-dev + - run: rustup toolchain install nightly + - run: cargo install cargo-make + - run: env CLIPPY_FEATURES=${{ matrix.features }} cargo make clippy + test: name: Test - needs: check_formatting + needs: clippy strategy: matrix: @@ -127,27 +151,3 @@ jobs: - name: 'Run tests (other OSes)' run: env QEMU_MACHINE=raspi3 cargo make test if: runner.os != 'macOS' - - clippy: - name: "Clippy" - needs: check_formatting - strategy: - matrix: - features: [ - "", - "noserial", - "qemu", - "noserial,qemu", - "jtag", - "noserial,jtag", - # jtag and qemu together don't make much sense - ] - runs-on: ubuntu-latest - timeout-minutes: 10 - steps: - - uses: actions/checkout@v1 - - run: sudo apt update - - run: sudo apt install libudev-dev - - run: rustup toolchain install nightly - - run: cargo install cargo-make - - run: env CLIPPY_FEATURES=${{ matrix.features }} cargo make clippy