From a9c1bf0e47c474837165343bfe93b54d4ac802b8 Mon Sep 17 00:00:00 2001 From: jjy Date: Wed, 6 Sep 2023 18:31:23 +0800 Subject: [PATCH] fix(ci): upgrade integration ica-filter-test --- .github/workflows/integration.yaml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index be4f8f1fe..3303d24dc 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -147,6 +147,16 @@ jobs: ica-filter-test: runs-on: ubuntu-20.04 + strategy: + fail-fast: false + matrix: + chain: + - package: ibc-go-v6-simapp + command: simd + account_prefix: cosmos + - package: ibc-go-v7-simapp + command: simd + account_prefix: cosmos steps: - uses: actions/checkout@v3 - uses: cachix/install-nix-action@v22 @@ -174,9 +184,10 @@ jobs: RUST_BACKTRACE: 1 NO_COLOR_LOG: 1 NEXTEST_RETRIES: 2 - CHAIN_COMMAND_PATHS: icad + CHAIN_COMMAND_PATHS: ${{ matrix.chain.command }} + ACCOUNT_PREFIXES: ${{ matrix.chain.account_prefix }} run: | - nix shell .#python .#ica -c \ + nix shell .#${{ matrix.chain.package }} -c \ cargo nextest run -p ibc-integration-test --features ica --no-fail-fast \ --test-threads=2 test_ica_filter