rpc: Collect finalized_block_events
in fetch_all_events
(#4262)
#219
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: Integration - Multi-chains | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
- unlabeled | |
paths: | |
- .github/workflows/multi-chains.yaml | |
- Cargo.toml | |
- Cargo.lock | |
- flake.nix | |
- flake.lock | |
- ci/** | |
- e2e/** | |
- crates/** | |
- tools/** | |
push: | |
branches: master | |
paths: | |
- .github/workflows/multi-chains.yaml | |
- Cargo.toml | |
- Cargo.lock | |
- flake.nix | |
- flake.lock | |
- ci/** | |
- e2e/** | |
- crates/** | |
- tools/** | |
env: | |
CARGO_INCREMENTAL: 0 | |
CARGO_PROFILE_DEV_DEBUG: 1 | |
CARGO_PROFILE_RELEASE_DEBUG: 1 | |
RUST_BACKTRACE: short | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
# Cancel previous runs of this workflow when a new commit is added to the PR, branch or tag | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
multi-chains-test: | |
runs-on: ubuntu-20.04 | |
if: | | |
github.ref == 'refs/heads/master' || ( | |
(github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize') && | |
contains(github.event.pull_request.labels.*.name, 'CI: multi-chains') | |
) || ( | |
github.event.action == 'labeled' && github.event.label.name == 'CI: multi-chains' | |
) | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
first-package: | |
- package: gaia20 | |
command: gaiad | |
account_prefix: cosmos | |
- package: ibc-go-v7-simapp | |
command: simd | |
account_prefix: cosmos | |
- package: ibc-go-v8-simapp | |
command: simd | |
account_prefix: cosmos | |
- package: ibc-go-v9-simapp | |
command: simd | |
account_prefix: cosmos | |
second-package: | |
- package: osmosis | |
command: osmosisd | |
account_prefix: osmo | |
- package: migaloo | |
command: migalood | |
account_prefix: migaloo | |
- package: wasmd | |
command: wasmd | |
account_prefix: wasm | |
- package: injective | |
command: injectived | |
account_prefix: inj | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
with: | |
extra-conf: | | |
substituters = https://cache.nixos.org | |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
- name: Install Cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: cosmos-nix | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Install Protoc | |
uses: heliaxdev/setup-protoc@v2 | |
with: | |
version: "25.0" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: -p ibc-integration-test --no-fail-fast --no-run | |
- name: Install cargo-nextest | |
run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin | |
- name: Run multi-chains integration tests | |
env: | |
RUST_LOG: info | |
RUST_BACKTRACE: 1 | |
NO_COLOR_LOG: 1 | |
NEXTEST_RETRIES: 2 | |
ACCOUNT_PREFIXES: ${{ matrix.first-package.account_prefix }},${{ matrix.second-package.account_prefix }} | |
run: | | |
CHAIN_COMMAND_PATHS=$(nix shell .#${{ matrix.first-package.package }} -c which ${{ matrix.first-package.command }}),$(nix shell .#${{ matrix.second-package.package }} -c which ${{ matrix.second-package.command }}) \ | |
nix shell .#python -c \ | |
cargo nextest run -p ibc-integration-test --no-fail-fast --failure-output final --test-threads=2 |