feat: precompilegen
Solidity interface -> stateful precompile
#322
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [ main, 'release/**' ] | |
pull_request: | |
branches: [ main, 'release/**' ] | |
workflow_dispatch: | |
jobs: | |
go_test_short: | |
env: | |
FLAKY_REGEX: 'ava-labs/libevm/(triedb/pathdb|eth|eth/tracers/js|eth/tracers/logger|accounts/abi/bind|accounts/keystore|eth/downloader|miner|ethclient|ethclient/gethclient|eth/catalyst)$' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.4 | |
- name: Run flaky tests sequentially | |
run: | # Upstream flakes are race conditions exacerbated by concurrent tests | |
go list ./... | grep -P "${FLAKY_REGEX}" | xargs -n 1 go test -short; | |
- name: Run non-flaky tests concurrently | |
run: | | |
go test -short $(go list ./... | grep -Pv "${FLAKY_REGEX}"); | |
go_generate: | |
env: | |
EXCLUDE_REGEX: 'ava-labs/libevm/(accounts/usbwallet/trezor)$' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install solc | |
run: | | |
sudo add-apt-repository ppa:ethereum/ethereum | |
sudo apt update | |
sudo apt list -a solc | |
sudo apt install solc=1:0.8.28-0ubuntu1~noble | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.4 | |
- name: Run `go generate` | |
run: go list ./... | grep -Pv "${EXCLUDE_REGEX}" | xargs go generate; | |
- name: git diff | |
run: git diff --exit-code |