-
Notifications
You must be signed in to change notification settings - Fork 1.2k
47 lines (40 loc) · 1.34 KB
/
test-kurtosis-assertoor.yml
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
name: Kurtosis Assertoor GitHub Action
on:
pull_request:
branches:
- kurtosis_assertoor
types:
- opened
- reopened
- synchronize
- ready_for_review
push:
branches:
- kurtosis_assertoor
jobs:
assertoor_test:
strategy:
matrix:
# list of os: https://github.com/actions/virtual-environments
os:
- { id: ubuntu-22.04, name: ubuntu }
#- macos-14
runs-on: ${{ matrix.os.id }}
steps:
- uses: actions/checkout@v4
- name: Create a temporary file
run: |
echo "This is a temporary file" > ${{ runner.temp }}/tempfile.txt
- name: Install dependencies on Linux
if: runner.os == 'Linux'
run: sudo apt update && sudo apt install build-essential
- name: download kurtosis config
run: |
wget -O kurtosis_config.yaml https://raw.githubusercontent.com/erigontech/erigon/kurtosis_assertoor/.github/workflows/kurtosis/config.yaml
- name: Run Kurtosis + assertoor tests
uses: ethpandaops/kurtosis-assertoor-github-action@v1
with:
enclave_name: "kurtosis-run-${{ matrix.os.name }}-${{ github.run_id }}"
ethereum_package_args: "./kurtosis_config.yaml"
#kurtosis_extra_args: --verbosity detailed --cli-log-level trace
enclave_dump: false