Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.5 #26

Merged
merged 12 commits into from
May 9, 2024
Merged

V0.5 #26

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build@v0.4
name: build@v0.5
on: [push, pull_request]

env:
Expand All @@ -18,19 +18,18 @@ env:
jobs:
relayer-build:
name: relayer-build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.20
uses: actions/setup-go@v3
uses: actions/checkout@v4
- name: Set up Go 1.22
uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: '1.22'
check-latest: true
cache: true
id: go
- name: Save relayer binary cache
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-bin-relayer
with:
path: ${{ env.CACHE_BIN_RELAYER_PATH }}
Expand All @@ -41,10 +40,10 @@ jobs:

tendermint-build:
name: tendermint-build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache-docker-tendermint
with:
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }}
Expand All @@ -62,10 +61,10 @@ jobs:

ethereum-build:
name: ethereum-build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache-docker-ethereum
with:
path: ${{ env.CACHE_DOCKER_ETHEREUM_DIR }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: eth2eth@v0.4
name: eth2eth@v0.5
on: [push, pull_request]

env:
Expand All @@ -10,9 +10,9 @@ env:
jobs:
eth2eth-test:
name: eth2eth-test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Wait for build to succeed
uses: lewagon/[email protected]
with:
Expand All @@ -21,12 +21,12 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
- name: Restore relayer binary cache
uses: actions/cache@v3
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@v3
uses: actions/cache@v4
with:
path: ${{ env.CACHE_DOCKER_ETHEREUM_DIR }}
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_ETHEREUM_KEY }}-${{ hashFiles('tests/chains/ethereum/**', '!**/.git/**') }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: tm2eth@v0.4
name: tm2eth@v0.5
on: [push, pull_request]

env:
Expand All @@ -12,28 +12,28 @@ env:
jobs:
tm2eth-test:
name: tm2eth-test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Wait for build to succeed
uses: lewagon/[email protected]
with:
ref: ${{ (github.event_name == 'pull_request' && github.event.pull_request.head.sha) || github.sha }}
check-regexp: '(relayer|tendermint)-build'
check-regexp: '(relayer|tendermint|ethereum)-build'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
- name: Restore relayer binary cache
uses: actions/cache@v3
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 Tendermint docker image cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }}
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_TENDERMINT_KEY }}-${{ hashFiles('tests/chains/tendermint/**', '!**/.git/**') }}
- name: Restore Ethereum docker image cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CACHE_DOCKER_ETHEREUM_DIR }}
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_ETHEREUM_KEY }}-${{ hashFiles('tests/chains/ethereum/**', '!**/.git/**') }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: tm2tm@v0.4
name: tm2tm@v0.5
on: [push, pull_request]

env:
Expand All @@ -10,9 +10,9 @@ env:
jobs:
tm2tm-test:
name: tm2tm-test
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Wait for build to succeed
uses: lewagon/[email protected]
with:
Expand All @@ -21,12 +21,12 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
- name: Restore relayer binary cache
uses: actions/cache@v3
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 Tendermint docker image cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CACHE_DOCKER_TENDERMINT_DIR }}
key: ${{ runner.os }}-${{ env.CACHE_DOCKER_TENDERMINT_KEY }}-${{ hashFiles('tests/chains/tendermint/**', '!**/.git/**') }}
Expand Down
Loading
Loading