Skip to content

Commit

Permalink
Merge branch '4.x' into ok/6844-Fix-unstable-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
avkos authored Mar 5, 2024
2 parents caae732 + bd6cc71 commit 2b94703
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,12 @@ jobs:
uses: actions/cache/restore@v3
with:
path: packages/web3/dist/4.x.json
key: web3-bundle-stats-4x-${{github.sha}}
key: web3-bundle-stats-4x-${{github.event.pull_request.base.sha}}
- run: yarn build:web:analyze
env:
STATS_FILE: ${{ github.ref_name }}.json
- name: Compare bundle stats
uses: github/webpack-bundlesize-compare-action@v1
if: github.event_name != 'push'
uses: github/webpack-bundlesize-compare-action@v1.8.2
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -105,9 +104,10 @@ jobs:
uses: actions/cache/save@v3
if: github.event_name == 'push' && github.ref == 'refs/heads/4.x'
with:
path: packages/web3/dist/4.x.json
path: packages/web3/dist/${{ github.ref_name }}.json
key: web3-bundle-stats-4x-${{github.sha}}


unit:
name: Unit Tests
needs: build
Expand Down

1 comment on commit 2b94703

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 2b94703 Previous: 6c075db Ratio
processingTx 9480 ops/sec (±3.95%) 9301 ops/sec (±4.81%) 0.98
processingContractDeploy 41414 ops/sec (±10.57%) 39129 ops/sec (±7.62%) 0.94
processingContractMethodSend 20557 ops/sec (±5.78%) 19443 ops/sec (±5.19%) 0.95
processingContractMethodCall 41486 ops/sec (±5.33%) 38971 ops/sec (±6.34%) 0.94
abiEncode 47490 ops/sec (±6.40%) 44252 ops/sec (±6.92%) 0.93
abiDecode 32769 ops/sec (±7.32%) 30419 ops/sec (±8.89%) 0.93
sign 1672 ops/sec (±3.18%) 1656 ops/sec (±4.08%) 0.99
verify 376 ops/sec (±0.52%) 373 ops/sec (±0.78%) 0.99

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.