Bump thiserror from 1.0.50 to 1.0.56 #2360
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: 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: gaia13 | |
command: gaiad | |
account_prefix: cosmos | |
- package: gaia14 | |
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 | |
second-package: | |
- package: osmosis | |
command: osmosisd | |
account_prefix: osmo | |
- package: migaloo | |
command: migalood | |
account_prefix: migaloo | |
- package: wasmd | |
command: wasmd | |
account_prefix: wasm | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v25 | |
with: | |
install_url: https://nixos-nix-install-tests.cachix.org/serve/vij683ly7sl95nnhb67bdjjfabclr85m/install | |
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve' | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- uses: cachix/cachix-action@v14 | |
with: | |
name: cosmos | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- 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 |