Skip to content

Commit

Permalink
feat(rundler): add rundler to v0.7 bundler test executor
Browse files Browse the repository at this point in the history
  • Loading branch information
dancoombs committed May 24, 2024
1 parent e0dccf5 commit 54ea58d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,21 +113,21 @@ jobs:
if: ${{ inputs.dump_logs }}
run: for d in build/*/*.log; do echo === $d:; cat $d | perl -pe 's/(?:runbundler-)?(\S+?)(?:-1)?[\s|]+(\S+)/$2 $1 /' | sort ; done

- name: Clone and update results repo
if: ${{ ! inputs.skip_push_results }}
run: ./update-results.sh out-results

- name: Push update to results repo
if: ${{ ! inputs.skip_push_results }}
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
with:
source-directory: 'out-results'
destination-github-username: 'eth-infinitism'
destination-repository-name: 'bundler-test-results'
user-email: [email protected]
target-branch: ${{ github.ref_name }}
# - name: Clone and update results repo
# if: ${{ ! inputs.skip_push_results }}
# run: ./update-results.sh out-results

# - name: Push update to results repo
# if: ${{ ! inputs.skip_push_results }}
# uses: cpina/github-action-push-to-another-repository@main
# env:
# SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
# with:
# source-directory: 'out-results'
# destination-github-username: 'eth-infinitism'
# destination-repository-name: 'bundler-test-results'
# user-email: [email protected]
# target-branch: ${{ github.ref_name }}

# Allow one concurrent deployment
concurrency:
Expand Down
17 changes: 17 additions & 0 deletions bundlers/rundler/rundler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
services:
bundler:
image: alchemyplatform/rundler:latest
command: node
environment:
- BUILDER_PRIVATE_KEY=c6cbc5ffad570fdad0544d1b5358a36edeb98d163b6567912ac4754e144d4edb
- NODE_HTTP=$ETH_RPC_URL
- MIN_UNSTAKE_DELAY=2
- RPC_API=eth,debug
- RUST_LOG=info
- PRIORITY_FEE_MODE_KIND=base_fee_percent
- PRIORITY_FEE_MODE_VALUE=0
- POOL_THROTTLED_ENTITY_LIVE_BLOCKS=20
- NETWORK=dev
- ENTRY_POINT_V0_6_ENABLED=false
ports:
- '3000:3000'

0 comments on commit 54ea58d

Please sign in to comment.