From 7df668b139b0d4c69e7dda2d29f258160271074a Mon Sep 17 00:00:00 2001 From: Wojciech Zmuda Date: Thu, 12 Sep 2024 00:02:55 +0200 Subject: [PATCH] github: remove benchmark step The --gas-report flag of the forge test command seems to conflict with blobhash mocks in tests, making the new EIP-4844 tests fail, despite they pass without this flag. Turn off benchmarks temporarily, to unblock EIP-4844 development. This should be debugged and fixed later. Signed-off-by: Wojciech Zmuda --- .github/workflows/tests.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5dd6da4..4d0c695 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,9 +31,6 @@ jobs: run: make build - name: Run Tests - run: make test - - - name: Run Benchmarks run: | - make bench + make test make snapshot