@@ -2,9 +2,7 @@ block_labels = ["needs-decision"]
delete_merged_branches = true
required_approvals = 1
status = [
- "build-riscv (stable%)",
- "build-riscv (1.59.0%)",
- "build-others (%)",
- "clippy (stable%)",
+ "build-check",
+ "clippy-check",
"rustfmt",
]
@@ -50,3 +50,13 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- name: Build crate for host OS
run: cargo build ${{ matrix.cargo_flags }}
+
+ # Job to check that all the builds succeeded
+ build-check:
+ needs:
+ - build-riscv
+ - build-others
+ runs-on: ubuntu-latest
+ if: always()
+ steps:
+ - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'
@@ -31,3 +31,12 @@ jobs:
components: clippy
- name: Run clippy
run: cargo clippy --all ${{ matrix.cargo_flags }} -- -D warnings
+ # Job to check that all the lint checks succeeded
+ clippy-check:
+ - clippy