From 74a381661111e3f0d978339c21f1f519f89266c4 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 15 Dec 2025 11:42:14 -0300 Subject: [PATCH] ci: reduce feature powerset depth (#20379) --- .github/workflows/lint.yml | 8 ++------ Makefile | 2 -- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 950d882bbc..cb3f73ea0d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -245,12 +245,8 @@ jobs: # Checks that selected crates can compile with power set of features features: - name: features (${{ matrix.partition }}/${{ matrix.total_partitions }}) + name: features runs-on: depot-ubuntu-latest - strategy: - matrix: - partition: [1, 2] - total_partitions: [2] timeout-minutes: 30 steps: - uses: actions/checkout@v6 @@ -268,7 +264,7 @@ jobs: --package reth-primitives-traits \ --package reth-primitives \ --feature-powerset \ - --partition ${{ matrix.partition }}/${{ matrix.total_partitions }} + --depth 2 env: RUSTFLAGS: -D warnings diff --git a/Makefile b/Makefile index 10eedb698f..3e1a2dbdcc 100644 --- a/Makefile +++ b/Makefile @@ -521,5 +521,3 @@ pr: make update-book-cli && \ cargo docs --document-private-items && \ make test - -check-features: