From 897e768cf09761ad6b5c348490b565a925edabcb Mon Sep 17 00:00:00 2001 From: Amit Zafran Date: Mon, 3 Jun 2024 14:20:36 +0300 Subject: [PATCH 1/3] continue-on-error: true (#1468) Co-authored-by: Amit Zafran --- .github/workflows/lava.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lava.yml b/.github/workflows/lava.yml index df8d75ff69..2300704a09 100644 --- a/.github/workflows/lava.yml +++ b/.github/workflows/lava.yml @@ -382,7 +382,7 @@ jobs: build_docker: permissions: - contents: read + contents: write packages: write needs: [test-consensus, test-protocol] runs-on: ubuntu-latest @@ -412,6 +412,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push uses: docker/build-push-action@v5 + continue-on-error: true with: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} From 11c2b008d708ab7e639a9987f510546a37d9d7be Mon Sep 17 00:00:00 2001 From: oren-lava <111131399+oren-lava@users.noreply.github.com> Date: Mon, 3 Jun 2024 15:09:28 +0300 Subject: [PATCH 2/3] fix: CNS-973: added pruning verification to EVMOS (#1456) * CNS-973: added pruning verification to EVMOS * CNS-973: small fix --- cookbook/specs/evmos.json | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/cookbook/specs/evmos.json b/cookbook/specs/evmos.json index 938be9bcba..0ea24db338 100644 --- a/cookbook/specs/evmos.json +++ b/cookbook/specs/evmos.json @@ -870,6 +870,10 @@ "values": [ { "latest_distance": 10000 + }, + { + "extension": "archive", + "latest_distance": 1000000 } ] } @@ -1460,6 +1464,10 @@ "values": [ { "latest_distance": 10000 + }, + { + "extension": "archive", + "latest_distance": 1000000 } ] } @@ -1550,13 +1558,16 @@ }, { "name": "pruning", + "parse_directive": { + "function_tag": "GET_BLOCK_BY_NUM" + }, "values": [ { - "expected_value": "" + "latest_distance": 10000 }, { "extension": "archive", - "expected_value": "" + "latest_distance": 1000000 } ] } From 740e64786cf5f04824259be4664bcbe7f05bf14a Mon Sep 17 00:00:00 2001 From: BabyScope <163932585+BabyScope@users.noreply.github.com> Date: Mon, 3 Jun 2024 14:16:04 +0200 Subject: [PATCH 3/3] fix: near archive testnet (#1461) * fix: archive param change near testnet * fix: change name * fix: inheritance from main deleted --------- Co-authored-by: Omer <100387053+omerlavanet@users.noreply.github.com> Co-authored-by: Yaroms <103432884+Yaroms@users.noreply.github.com> --- cookbook/specs/near.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cookbook/specs/near.json b/cookbook/specs/near.json index 6c7d50a57a..17fa2acb6a 100644 --- a/cookbook/specs/near.json +++ b/cookbook/specs/near.json @@ -489,6 +489,15 @@ "expected_value": "testnet" } ] + }, + { + "name": "pruning", + "values": [ + { + "extension": "archive", + "expected_value": "42376888" + } + ] } ] }