Update ibc-go to v8 #677
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: Test | |
on: [push, pull_request] | |
env: | |
CACHE_BIN_RELAYER_KEY: bin-relayer | |
CACHE_BIN_RELAYER_PATH: ./build/yrly | |
CACHE_DOCKER_TENDERMINT_KEY: docker-tendermint | |
CACHE_DOCKER_TENDERMINT_DIR: /tmp/tendermint | |
jobs: | |
relayer-build: | |
name: relayer-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Go 1.21 | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run Unit test | |
run: make test | |
- name: Build | |
run: make build | |
- name: Save relayer binary cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.CACHE_BIN_RELAYER_PATH }} | |
key: ${{ runner.os }}-${{ env.CACHE_BIN_RELAYER_KEY }}-${{ github.sha }} | |
tendermint-build: | |
name: tendermint-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
id: cache-docker-tendermint | |
with: | |
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }} | |
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_TENDERMINT_KEY }}-${{ hashFiles('tests/chains/tendermint/**', '!**/.git/**') }} | |
- name: Build docker images | |
if: steps.cache-docker-tendermint.outputs.cache-hit != 'true' | |
working-directory: ./tests/chains/tendermint | |
run: | | |
make docker-images | |
- name: Save docker images | |
if: steps.cache-docker-tendermint.outputs.cache-hit != 'true' | |
working-directory: ./tests/scripts | |
run: | | |
./save_docker_images $CACHE_DOCKER_TENDERMINT_DIR tendermint-chain0:latest tendermint-chain1:latest | |
tm2tm-test: | |
name: tm2tm-test | |
runs-on: ubuntu-22.04 | |
needs: | |
- relayer-build | |
- tendermint-build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore relayer binary cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.CACHE_BIN_RELAYER_PATH }} | |
key: ${{ runner.os }}-${{ env.CACHE_BIN_RELAYER_KEY }}-${{ github.sha }} | |
- name: Restore Tendermint docker image cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }} | |
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_TENDERMINT_KEY }}-${{ hashFiles('tests/chains/tendermint/**', '!**/.git/**') }} | |
- name: Load Tendermint docker images | |
working-directory: ./tests/scripts | |
run: | | |
./load_docker_images $CACHE_DOCKER_TENDERMINT_DIR tendermint-chain0:latest tendermint-chain1:latest | |
- name: Run Test | |
working-directory: ./tests/cases/tm2tm | |
run: | | |
make network | |
make test | |
make network-down | |
tmmock2tmmock-test: | |
name: tmmock2tmmock-test | |
runs-on: ubuntu-22.04 | |
needs: | |
- relayer-build | |
- tendermint-build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore relayer binary cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.CACHE_BIN_RELAYER_PATH }} | |
key: ${{ runner.os }}-${{ env.CACHE_BIN_RELAYER_KEY }}-${{ github.sha }} | |
- name: Restore Tendermint docker image cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }} | |
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_TENDERMINT_KEY }}-${{ hashFiles('tests/chains/tendermint/**', '!**/.git/**') }} | |
- name: Load Tendermint docker images | |
working-directory: ./tests/scripts | |
run: | | |
./load_docker_images $CACHE_DOCKER_TENDERMINT_DIR tendermint-chain0:latest tendermint-chain1:latest | |
- name: Run Test | |
working-directory: ./tests/cases/tmmock2tmmock | |
run: | | |
make network | |
make test | |
make network-down |