Román Cárdenas hace 1 año
padre
commit
9c80007c4f
Se han modificado 3 ficheros con 21 adiciones y 4 borrados
  1. 2 4
      .github/bors.toml
  2. 10 0
      .github/workflows/build.yaml
  3. 9 0
      .github/workflows/clippy.yaml

+ 2 - 4
.github/bors.toml

@@ -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",
 ]

+ 10 - 0
.github/workflows/build.yaml

@@ -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) }}'

+ 9 - 0
.github/workflows/clippy.yaml

@@ -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:
+    needs:
+    - clippy
+    runs-on: ubuntu-latest
+    if: always()
+    steps:
+      - run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}'