Skip to content

Commit

Permalink
add execution spec tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gballet committed Jul 31, 2024
1 parent 9be0b58 commit 819197f
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/spectest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Execution spec tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master, kaustinen-with-shapella ]
workflow_dispatch:

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22.4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10.14
- name: Build
run: |
go build ./cmd/evm
git clone https://github.com/ethereum/execution-spec-tests
cd execution-spec-tests
git checkout 88e54ac3b0324b0b9e7428e92c6b8073d5be9ed5 -b verkle/main
rm -rf venv
python3 -m venv venv
. venv/bin/activate
pip install -e .[docs,lint,test] --force-reinstall
solc-select use 0.8.24 --always-install
rm -rf fixtures
fill --fork EIP6800Transition -m blockchain_test --evm-bin=../evm -n auto

0 comments on commit 819197f

Please sign in to comment.