-
Notifications
You must be signed in to change notification settings - Fork 31
73 lines (60 loc) · 1.86 KB
/
asertoor.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: "Assertoor"
on:
merge_group:
pull_request:
branches: ["**"]
paths-ignore:
- 'README.md'
- 'LICENSE'
- "**/README.md"
- "**/docs/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
RUST_VERSION: 1.80.1
jobs:
build:
uses: ./.github/workflows/docker_build.yaml
run-assertoor-tx-check:
name: Transaction Stability Check
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Download artifacts (tx)
uses: actions/download-artifact@v4
with:
name: ethrex_image
path: /tmp
- name: Load image (tx)
run: |
docker load --input /tmp/ethrex_image.tar
- name: Run assertoor (tx)
uses: ethpandaops/kurtosis-assertoor-github-action@v1
with:
kurtosis_version: '1.4.2'
ethereum_package_url: 'github.com/lambdaclass/ethereum-package'
ethereum_package_branch: 'ethrex-integration'
ethereum_package_args: './test_data/assertoor/network_params_tx.yaml'
run-assertoor-blob-check:
name: Blobs Stability Check
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Download artifacts (blob)
uses: actions/download-artifact@v4
with:
name: ethrex_image
path: /tmp
- name: Load image (blob)
run: |
docker load --input /tmp/ethrex_image.tar
- name: Run assertoor (blob)
uses: ethpandaops/kurtosis-assertoor-github-action@v1
with:
kurtosis_version: '1.4.2'
ethereum_package_url: 'github.com/lambdaclass/ethereum-package'
ethereum_package_branch: 'ethrex-integration'
ethereum_package_args: './test_data/assertoor/network_params_blob.yaml'