-
Notifications
You must be signed in to change notification settings - Fork 11
44 lines (42 loc) · 1.59 KB
/
v0.5-eth2eth.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
name: eth2eth@v0.5
on: [push, pull_request]
env:
CACHE_BIN_RELAYER_KEY: bin-relayer
CACHE_BIN_RELAYER_PATH: ./build/yrly
CACHE_DOCKER_ETHEREUM_KEY: docker-ethereum
CACHE_DOCKER_ETHEREUM_DIR: /tmp/ethereum
jobs:
eth2eth-test:
name: eth2eth-test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Wait for build to succeed
uses: lewagon/wait-on-check-action@v1.3.1
with:
ref: ${{ (github.event_name == 'pull_request' && github.event.pull_request.head.sha) || github.sha }}
check-regexp: '(relayer|ethereum)-build'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
- name: Restore relayer binary cache
uses: actions/cache@v4
with:
path: ${{ env.CACHE_BIN_RELAYER_PATH }}
key: ${{ runner.os }}-${{ env.CACHE_BIN_RELAYER_KEY }}-${{ hashFiles('relayer/**', 'go.sum') }}
- name: Restore Ethereum docker image cache
uses: actions/cache@v4
with:
path: ${{ env.CACHE_DOCKER_ETHEREUM_DIR }}
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_ETHEREUM_KEY }}-${{ hashFiles('tests/chains/ethereum/**', '!**/.git/**') }}
- name: Load Ethereum docker images
working-directory: ./tests/scripts
run: |
./load_docker_images $CACHE_DOCKER_ETHEREUM_DIR ethereum-geth0:latest ethereum-geth1:latest
- name: Run Test
working-directory: ./tests/cases/eth2eth
run: |
make network
make test
make network-down