Skip to content

Commit f289ef5

Browse files
authored
test: add nightly run Kurtosis sim test (#7821)
Add nightly CI run to run basic kurtosis tests. More tests from [here](https://github.com/ethpandaops/assertoor/tree/master/playbooks) can be added in future PRs if needed.
1 parent d7a6ceb commit f289ef5

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
participants:
2+
- el_type: geth
3+
cl_type: lodestar
4+
cl_image: chainsafe/lodestar:kurtosis-ci
5+
- el_type: geth
6+
cl_type: lighthouse
7+
additional_services:
8+
- assertoor
9+
assertoor_params:
10+
run_block_proposal_check: true
11+
run_transaction_test: true
12+
run_blob_transaction_test: true
13+
run_opcodes_transaction_test: true

.github/workflows/kurtosis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Kurtosis sim tests
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "0 0 * * *" # Runs at midnight UTC everyday
7+
8+
jobs:
9+
test:
10+
timeout-minutes: 60
11+
name: Build and run Kurtosis
12+
runs-on: buildjet-4vcpu-ubuntu-2204
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- name: Set up Docker Buildx
18+
uses: docker/setup-buildx-action@v3
19+
- name: Build Docker image - local only
20+
run: >
21+
docker buildx build . --load \
22+
--tag chainsafe/lodestar:kurtosis-ci \
23+
--build-arg COMMIT=$(git rev-parse HEAD)
24+
- name: Run test
25+
uses: ethpandaops/kurtosis-assertoor-github-action@v1
26+
with:
27+
ethereum_package_args: '.github/workflows/assets/kurtosis_sim_test_config.yaml'

0 commit comments

Comments
 (0)