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: build@v0.5 | |
on: [push, pull_request] | |
env: | |
CACHE_BIN_RELAYER_KEY: bin-relayer | |
CACHE_BIN_RELAYER_PATH: ./build/yrly | |
CACHE_DOCKER_ETHEREUM_GETH_KEY: docker-ethereum-geth | |
CACHE_DOCKER_ETHEREUM_GETH_DIR: /tmp/ethereum/geth | |
CACHE_DOCKER_FABRIC_KEY: docker-fabric | |
CACHE_DOCKER_FABRIC_DIR: /tmp/fabric | |
CACHE_DOCKER_CORDA_KEY: docker-corda | |
CACHE_DOCKER_CORDA_DIR: /tmp/corda | |
CACHE_DOCKER_TENDERMINT_KEY: docker-tendermint | |
CACHE_DOCKER_TENDERMINT_DIR: /tmp/tendermint | |
CACHE_DOCKER_ETHEREUM_KEY: docker-ethereum | |
CACHE_DOCKER_ETHEREUM_DIR: /tmp/ethereum | |
jobs: | |
relayer-build: | |
name: relayer-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
check-latest: true | |
id: go | |
- name: Save relayer binary cache | |
uses: actions/cache@v4 | |
id: cache-bin-relayer | |
with: | |
path: ${{ env.CACHE_BIN_RELAYER_PATH }} | |
key: ${{ runner.os }}-${{ env.CACHE_BIN_RELAYER_KEY }}-${{ hashFiles('relayer/**', 'go.sum') }} | |
- name: Build | |
if: steps.cache-bin-relayer.outputs.cache-hit != 'true' | |
run: make yrly | |
tendermint-build: | |
name: tendermint-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
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 | |
ethereum-build: | |
name: ethereum-build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
id: cache-docker-ethereum | |
with: | |
path: ${{ env.CACHE_DOCKER_ETHEREUM_DIR }} | |
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_ETHEREUM_KEY }}-${{ hashFiles('tests/chains/ethereum/**', '!**/.git/**') }} | |
- name: Build docker images | |
if: steps.cache-docker-ethereum.outputs.cache-hit != 'true' | |
working-directory: ./tests/chains/ethereum | |
run: | | |
make docker-images | |
- name: Save docker images | |
if: steps.cache-docker-ethereum.outputs.cache-hit != 'true' | |
working-directory: ./tests/scripts | |
run: | | |
./save_docker_images $CACHE_DOCKER_ETHEREUM_DIR ethereum-geth0:latest ethereum-geth1:latest |