-
Notifications
You must be signed in to change notification settings - Fork 339
133 lines (125 loc) · 5.14 KB
/
Copy pathper-pr.yml
File metadata and controls
133 lines (125 loc) · 5.14 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: CI
on:
pull_request:
concurrency:
group: "tests-${{ github.head_ref }}"
cancel-in-progress: true
jobs:
run_with_args:
strategy:
matrix:
file_name:
[
"./.github/tests/mev.yaml",
"./.github/tests/mev-mock.yaml",
"./.github/tests/mix-with-tools.yaml",
"./.github/tests/mix-persistence.yaml",
"./.github/tests/mix-public.yaml",
"./.github/tests/minimal.yaml",
"./network_params.yaml",
"."
]
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: ./.github/actions/docker-login
with:
username: ethpandaops
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Setup Kurtosis
uses: ./.github/actions/kurtosis-install
- name: Run Starlark
run: |
if [[ "${{ matrix.file_name }}" == "." ]]; then
echo "ENCLAVE=default" >> "$GITHUB_ENV"
kurtosis run ${{ github.workspace }} --enclave "default" --verbosity detailed --image-download always
else
enclave=$(basename "${{ matrix.file_name }}" .yaml | tr '_.' '--')
echo "ENCLAVE=$enclave" >> "$GITHUB_ENV"
kurtosis run ${{ github.workspace }} --enclave "$enclave" --args-file ${{ matrix.file_name }} --verbosity detailed --image-download always
fi
- name: Upload genesis config
if: matrix.file_name == '.' || matrix.file_name == './network_params.yaml' || matrix.file_name == './.github/tests/minimal.yaml'
run: kurtosis files download "$ENCLAVE" el_cl_genesis_data /tmp/genesis-$ENCLAVE
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: matrix.file_name == '.' || matrix.file_name == './network_params.yaml' || matrix.file_name == './.github/tests/minimal.yaml'
with:
name: genesis-config-${{ env.ENCLAVE }}
path: /tmp/genesis-${{ env.ENCLAVE }}/config.yaml
retention-days: 1
check-consensus-spec-values:
name: Check consensus spec values (${{ matrix.label }})
needs: run_with_args
continue-on-error: true
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- label: default
artifact: genesis-config-default
preset: mainnet
- label: network-params
artifact: genesis-config-network-params
preset: mainnet
- label: minimal
artifact: genesis-config-minimal
preset: minimal
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: ${{ matrix.artifact }}
path: /tmp/genesis
- name: Install pyyaml
run: pip install pyyaml --quiet
- name: Download upstream consensus-specs config
run: |
curl -fsSL \
"https://raw.githubusercontent.com/ethereum/consensus-specs/master/configs/${{ matrix.preset }}.yaml" \
-o /tmp/spec.yaml
- name: Compare genesis config.yaml against upstream spec
run: |
python3 .github/check-consensus-spec-values.py \
--our-config /tmp/genesis/config.yaml \
--spec-config /tmp/spec.yaml
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Setup Kurtosis
uses: ./.github/actions/kurtosis-install
- name: Kurtosis Lint
run: kurtosis lint ${{ github.workspace }}
assertoor:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: ./.github/actions/docker-login
with:
username: ethpandaops
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Kurtosis Assertoor GitHub Action
uses: ethpandaops/kurtosis-assertoor-github-action@f64942cbc780df731a731ea9f45765b161d2c8df # v1
with:
ethereum_package_url: "."
ethereum_package_branch: ""
ethereum_package_args: .github/tests/mix-assert.yaml
#check_optimism_package:
# runs-on: ubuntu-latest
# steps:
# - name: Check out Repository
# uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
# - name: Setup Kurtosis
# uses: ./.github/actions/kurtosis-install
# - name: Run L1
# run: |
# kurtosis run --enclave test ${{ github.workspace }} --args-file https://raw.githubusercontent.com/ethpandaops/optimism-package/refs/heads/main/.github/tests/external-l1/ethereum.yaml --verbosity detailed
# - name: Run L2
# run: |
# kurtosis run --enclave test github.com/ethpandaops/optimism-package --args-file https://raw.githubusercontent.com/ethpandaops/optimism-package/refs/heads/main/.github/tests/external-l1/optimism.yaml --verbosity detailed