Skip to content

Commit

Permalink
Merge branch 'main' into damian/2165-ics27-genesis-state-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
damiannolan authored Sep 6, 2022
2 parents 546ab69 + 196d9be commit 3095c61
Show file tree
Hide file tree
Showing 7 changed files with 18,187 additions and 2,212 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- id: set-matrix
run: echo "::set-output name=matrix::$(go run cmd/build_test_matrix/main.go)"
env:
TEST_EXCLUSIONS: "TestInterchainAccountsTestSuite,TestIncentivizedInterchainAccountsTestSuite"
TEST_EXCLUSIONS: "TestInterchainAccountsTestSuite,TestIncentivizedInterchainAccountsTestSuite,TestUpgradeTestSuite"

e2e:
env:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/e2e-upgrade.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests / E2E Upgrade
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
upgrade-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- test: TestV4ToV5ChainUpgrade
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Run e2e upgrade test
run: |
cd e2e
make e2e-test entrypoint=TestUpgradeTestSuite test=${{ matrix.test }}
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ jobs:
chain-b-tag: "${{ needs.determine-image-tag.outputs.simd-tag }}"
relayer-tag: "v2.0.0"
chain-binary: "simd"
# on regular PRs we won't run interchain account tests.
test-exclusions: "TestInterchainAccountsTestSuite,TestIncentivizedInterchainAccountsTestSuite"
# on regular PRs we won't run interchain account or upgrade tests.
test-exclusions: "TestInterchainAccountsTestSuite,TestIncentivizedInterchainAccountsTestSuite,TestUpgradeTestSuite"
Loading

0 comments on commit 3095c61

Please sign in to comment.