From d48a28b40e9dd5220e6e919c1d6d9e73c004aa4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Thu, 30 Apr 2026 12:25:00 -0300 Subject: [PATCH 1/2] chore: enable parallel fixture generation in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 07d9c4b..d610eba 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ leanSpec: cd leanSpec && git checkout $(LEAN_SPEC_COMMIT_HASH) leanSpec/fixtures: leanSpec - cd leanSpec && uv run fill --fork devnet --scheme=prod -o fixtures + cd leanSpec && uv run fill --fork devnet -n auto --scheme=prod -o fixtures lean-quickstart: git clone https://github.com/blockblaz/lean-quickstart.git --depth 1 --single-branch From 8e9cbc6317ea173fada9f983433b57d2fc85d8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Gr=C3=BCner?= <47506558+MegaRedHand@users.noreply.github.com> Date: Thu, 30 Apr 2026 12:25:14 -0300 Subject: [PATCH 2/2] ci: use automatic parallelization level when generating fixtures --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d23a38..a0c7060 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,7 +120,7 @@ jobs: - name: Generate test fixtures if: steps.cache-fixtures.outputs.cache-hit != 'true' working-directory: leanSpec - run: uv run fill --fork=Devnet --scheme prod -o fixtures -n 2 + run: uv run fill --fork=Devnet --scheme prod -o fixtures -n auto # Save fixtures even if a later step fails, so a re-run does not # have to regenerate them. See: https://github.com/actions/cache/tree/main/save#always-save-cache