From a410d054c56fb9d859cdd1664e397830812c8cd6 Mon Sep 17 00:00:00 2001 From: moudyellaz Date: Sat, 1 Aug 2026 22:27:15 +0200 Subject: [PATCH 1/2] perf(build): compile dependencies at opt-level 3 in dev and test profiles --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 397eb965..6d4ea05e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -226,9 +226,15 @@ keccak = { git = "https://github.com/logos-blockchain/sponges", rev = "3a56e9977 [profile.dev] debug = "line-tables-only" +[profile.dev.package."*"] +opt-level = 3 + [profile.test] debug = "line-tables-only" +[profile.test.package."*"] +opt-level = 3 + [workspace.lints.rust] warnings = "deny" From 502eecfb4d5ffff5bfdacecd8b3864571b0611a0 Mon Sep 17 00:00:00 2001 From: moudyellaz Date: Sat, 1 Aug 2026 22:27:15 +0200 Subject: [PATCH 2/2] ci: raise valid-proof-test timeout to 150 minutes --- .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 0b92a8a2..88be5dab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -287,7 +287,7 @@ jobs: needs: ci-image if: github.event_name == 'push' runs-on: ubuntu-latest - timeout-minutes: 90 + timeout-minutes: 150 steps: - uses: actions/checkout@v5 with: