57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
name: EVM Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- develop
|
|
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- develop
|
|
|
|
jobs:
|
|
evm-test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.21.x]
|
|
os: [ubuntu-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
# In order:
|
|
# * Module download cache
|
|
# * Build cache (Linux)
|
|
# * Build cache (Mac)
|
|
# * Build cache (Windows)
|
|
path: |
|
|
~/go/pkg/mod
|
|
~/.cache/go-build
|
|
~/Library/Caches/go-build
|
|
~\AppData\Local\go-build
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: EVM Test
|
|
env:
|
|
CGO_CFLAGS: "-O -D__BLST_PORTABLE__"
|
|
CGO_CFLAGS_ALLOW: "-O -D__BLST_PORTABLE__"
|
|
ANDROID_HOME: "" # Skip android test
|
|
run: |
|
|
git submodule update --init --depth 1 --recursive
|
|
go mod download
|
|
cd tests
|
|
sed -i -e 's/\/\/ bt.skipLoad/bt.skipLoad/g' block_test.go
|
|
bash -x run-evm-tests.sh
|