Channel Upgrade Aftercare #128
Workflow file for this run
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: 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 |