Skip to content

Commit 8509ba2

Browse files
ci: post merge chores (#1722)
* ci: post merge chores * chore: bump kurtosis and add rpc tests
1 parent ff431e5 commit 8509ba2

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/kurtosis-e2e.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
uses: actions/checkout@v5
5353
with:
5454
repository: 0xPolygon/kurtosis-pos
55-
ref: v1.1.4
55+
ref: v1.1.5
5656
path: kurtosis-pos
5757

5858
- name: Pre kurtosis run
@@ -85,6 +85,15 @@ jobs:
8585
- name: Test state syncs
8686
run: kurtosis service exec ${{ env.ENCLAVE_NAME }} test-runner "bats --filter-tags pos,bridge,l1,l2 --recursive tests/"
8787

88+
- name: Run RPC tests
89+
run: |
90+
export RPC_URL=$(kurtosis port print ${{ env.ENCLAVE_NAME }} l2-el-1-bor-heimdall-v2-validator rpc)
91+
export PRIV_KEY="0xd40311b5a5ca5eaeb48dfba5403bde4993ece8eccf4190e98e19fcd4754260ea"
92+
93+
cd pos-workflows/tests/rpc_tests
94+
go mod tidy
95+
go run . --priv-key "$PRIV_KEY" --rpc-url "$RPC_URL" --log-req-res true
96+
8897
- name: Run smoke tests (Checkpoints and Milestones)
8998
run: bash ./pos-workflows/tests/kurtosis_smoke_test.sh
9099

.github/workflows/kurtosis-stateless-e2e.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ name: Stateless Sync Tests
33
on:
44
push:
55
branches:
6+
- 'master'
67
- 'develop'
78
pull_request:
89
branches:
10+
- 'master'
911
- 'develop'
10-
types: [opened, synchronize, reopened]
12+
types: [opened, synchronize]
1113

1214
concurrency:
1315
group: stateless-sync-${{ github.event.pull_request.number || github.ref }}
@@ -42,7 +44,7 @@ jobs:
4244
uses: actions/checkout@v5
4345
with:
4446
repository: 0xPolygon/heimdall-v2
45-
ref: stateless_sync
47+
ref: develop
4648
path: heimdall-v2
4749

4850
- name: Checkout pos-workflows

0 commit comments

Comments
 (0)