Skip to content

Commit

Permalink
ci: fix sealevel matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
kamiyaa committed Jan 24, 2025
1 parent 0b94ecf commit ea406ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,6 @@ jobs:
- name: Checkout registry
uses: ./.github/actions/checkout-registry

- name: agent tests (CosmWasm)
run: cargo test --release --package run-locally --bin run-locally --features cosmos -- cosmos::test --nocapture
if: matrix.e2e-type == 'cosmwasm'
working-directory: ./rust/main
env:
RUST_BACKTRACE: 'full'

- name: Check for Rust file changes
id: check-rust-changes
run: |
Expand All @@ -284,6 +277,13 @@ jobs:
echo "rust_changes=false" >> $GITHUB_OUTPUT
fi
- name: agent tests (CosmWasm)
run: cargo test --release --package run-locally --bin run-locally --features cosmos -- cosmos::test --nocapture
if: matrix.e2e-type == 'cosmwasm'
working-directory: ./rust/main
env:
RUST_BACKTRACE: 'full'

- name: agent tests (EVM)
run: cargo run --release --bin run-locally --features test-utils
if: matrix.e2e-type == 'evm'
Expand All @@ -296,7 +296,7 @@ jobs:

- name: agent tests (Sealevel)
run: cargo test --release --package run-locally --bin run-locally --features sealevel -- sealevel::test --nocapture
if: matrix.e2e-type == 'evm' && ${{ steps.check-rust-changes.outputs.rust_changes }}
if: matrix.e2e-type == 'sealevel' && ${{ steps.check-rust-changes.outputs.rust_changes }}
working-directory: ./rust/main
env:
E2E_CI_MODE: 'true'
Expand Down

0 comments on commit ea406ce

Please sign in to comment.