Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tps test: single node - bera #9

Merged
merged 33 commits into from
Oct 21, 2024
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
300b037
refactor "run" command with new listener, limiter and smart exit
0g-wh Oct 17, 2024
6301f5a
fix review issues
0g-wh Oct 17, 2024
bdcd38d
Create main.yml
0g-wh Oct 18, 2024
fbe33bf
Update main.yml
0g-wh Oct 18, 2024
a73695c
Update main.yml
0g-wh Oct 18, 2024
a2229fb
Update main.yml
0g-wh Oct 18, 2024
1e81e7e
Update main.yml
0g-wh Oct 18, 2024
0545b2c
Update main.yml
0g-wh Oct 18, 2024
0a4597a
Update main.yml
0g-wh Oct 18, 2024
9562d3e
Update main.yml
0g-wh Oct 18, 2024
efcdf83
Update main.yml
0g-wh Oct 18, 2024
cecb44e
Update main.yml
0g-wh Oct 18, 2024
d97a73d
Update main.yml
0g-wh Oct 18, 2024
c7e1634
Update main.yml
0g-wh Oct 18, 2024
ab63143
Update main.yml
0g-wh Oct 18, 2024
c5b0740
Update main.yml
0g-wh Oct 18, 2024
fa359f4
Update main.yml
0g-wh Oct 18, 2024
a917661
Update main.yml
0g-wh Oct 18, 2024
5f3ee7b
Update main.yml
0g-wh Oct 18, 2024
07e3d07
Update main.yml
0g-wh Oct 18, 2024
dac9f49
Update main.yml
0g-wh Oct 18, 2024
f0ba7a2
Merge branch '0glabs:main' into main
0g-wh Oct 21, 2024
38d066a
Update and rename main.yml to tps-single-bera.yml
0g-wh Oct 21, 2024
3baf6ab
Update tps-single-bera.yml
0g-wh Oct 21, 2024
16b1c3b
Update tps-single-bera.yml
0g-wh Oct 21, 2024
52088c4
Update tps-single-bera.yml
0g-wh Oct 21, 2024
4ffd217
Update tps-single-bera.yml
0g-wh Oct 21, 2024
d3723e3
Update tps-single-bera.yml
0g-wh Oct 21, 2024
c41d9b7
Update tps-single-bera.yml
0g-wh Oct 21, 2024
e305cf8
Update tps-single-bera.yml
0g-wh Oct 21, 2024
afbaf0d
Update tps-single-bera.yml
0g-wh Oct 21, 2024
0781694
Update tps-single-bera.yml
0g-wh Oct 21, 2024
51aac6f
Update tps-single-bera.yml
0g-wh Oct 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/tps-single-bera.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Signal Node - Bera

on:
workflow_dispatch:

pull_request:
types:
- opened
- synchronize
- reopened

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Build Tool
run: |
make build
- name: Build Chain
run: |
git clone -b v0.2.0-alpha.8 https://github.com/berachain/beacon-kit.git
cd beacon-kit
sudo mkdir .tmp
sudo chmod 777 .tmp
make build
make start &> consensus.log &
MAKEFILE_PATH="build/scripts/testing.mk"
sed -i '/start-reth:/,/^\s*$/s/--ipcpath ${IPC_PATH}/--ipcpath ${IPC_PATH} \\\n\t--ws \\\n\t--ws.addr "0.0.0.0" \\\n\t--ws.port 8546 \\\n\t--ws.api eth,net,web3/' "$MAKEFILE_PATH"
sed -i '/start-reth:/,/^\s*$/s/-p 8551:8551/-p 8551:8551 \\\n\t-p 8546:8546/' "$MAKEFILE_PATH"
make start-reth &> reth.log &
sleep 10
cd ../../evmchainbench
./bin/evmchainbench run --tx-count 20000