-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added authz support for ics20 (#3079)
Co-authored-by: Damian Nolan <[email protected]> Co-authored-by: Cian Hatton <[email protected]> Co-authored-by: Charleen Fei <[email protected]> Co-authored-by: Zaki Manian <[email protected]> (cherry picked from commit 6c008ea) # Conflicts: # .github/workflows/e2e-manual-simd.yaml # e2e/testconfig/testconfig.go # e2e/testsuite/codec.go # e2e/testsuite/testsuite.go # e2e/testvalues/values.go
- Loading branch information
1 parent
002ae8c
commit 02f7854
Showing
15 changed files
with
2,585 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Manual E2E (Simd) | ||
on: | ||
# when https://github.com/community/community/discussions/11795 is resolved | ||
# we will be able to dynamically build up the list of valid inputs. | ||
# for now this needs to be manual. | ||
workflow_dispatch: | ||
inputs: | ||
test-entry-point: | ||
description: 'Test entry point' | ||
required: true | ||
type: choice | ||
options: | ||
- TestTransferTestSuite | ||
- TestIncentivizedTransferTestSuite | ||
- TestConnectionTestSuite | ||
- TestInterchainAccountsTestSuite | ||
- TestInterchainAccountsGroupsTestSuite | ||
- TestInterchainAccountsGovTestSuite | ||
- TestIncentivizedInterchainAccountsTestSuite | ||
- TestAuthzTransferTestSuite | ||
chain-image: | ||
description: 'The image to use for chain A' | ||
required: true | ||
type: string | ||
default: "ghcr.io/cosmos/ibc-go-simd" | ||
chain-binary: | ||
description: 'Specify the chain binary to be used' | ||
required: true | ||
type: string | ||
default: "simd" | ||
chain-a-tag: | ||
description: 'The tag to use for chain A' | ||
required: true | ||
type: choice | ||
default: main | ||
options: | ||
- main | ||
- v6.1.0 | ||
- v5.2.0 | ||
- v4.2.0 | ||
- v4.1.1 | ||
- v3.4.0 | ||
- v3.3.1 | ||
- v2.5.0 | ||
- v2.4.2 | ||
chain-a-tag-override: | ||
description: 'Specify an arbitrary tag for chain A' | ||
required: false | ||
type: string | ||
chain-b-tag: | ||
default: v6.0.0 | ||
description: 'The tag to use for chain B' | ||
required: true | ||
type: choice | ||
options: | ||
- main | ||
- v6.1.0 | ||
- v5.2.0 | ||
- v4.2.0 | ||
- v4.1.1 | ||
- v3.4.0 | ||
- v3.3.1 | ||
- v2.5.0 | ||
- v2.4.2 | ||
chain-b-tag-override: | ||
description: 'Specify an arbitrary tag for chain B' | ||
required: false | ||
type: string | ||
relayer-tag: | ||
description: 'The tag to use for the relayer' | ||
required: true | ||
default: "v2.1.2" | ||
type: string | ||
|
||
|
||
jobs: | ||
e2e-manual: | ||
uses: ./.github/workflows/e2e-test-workflow-call.yml | ||
with: | ||
chain-image: "${{ github.event.inputs.chain-image }}" | ||
chain-a-tag: "${{ github.event.inputs.chain-a-tag-override || github.event.inputs.chain-a-tag }}" | ||
chain-b-tag: "${{ github.event.inputs.chain-b-tag-override || github.event.inputs.chain-b-tag }}" | ||
relayer-tag: "${{ github.event.inputs.relayer-tag }}" | ||
test-entry-point: "${{ github.event.inputs.test-entry-point }}" | ||
chain-binary: "${{ github.event.inputs.chain-binary }}" |
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
Oops, something went wrong.