Skip to content

Update CometBFT 0.38.0-rc3 for Cosmos SDK 0.50.0-rc0 with dYdX patches #64

Update CometBFT 0.38.0-rc3 for Cosmos SDK 0.50.0-rc0 with dYdX patches

Update CometBFT 0.38.0-rc3 for Cosmos SDK 0.50.0-rc0 with dYdX patches #64

Workflow file for this run

name: e2e
# Runs the CI end-to-end test network on all pushes to v0.38.x
# and every pull request, but only if any Go files have been changed.
on:
workflow_dispatch: # allow running workflow manually
pull_request:
push:
branches:
- v0.38.x
jobs:
e2e-test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v6
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: Build
working-directory: test/e2e
# Run two make jobs in parallel, since we can't run steps in parallel.
run: make -j2 docker runner tests
if: "env.GIT_DIFF != ''"
- name: Run CI testnet
working-directory: test/e2e
run: ./run-multiple.sh networks/ci.toml
if: "env.GIT_DIFF != ''"