3636 description : ' The tag to use for chain B'
3737 required : true
3838 type : string
39+ chain-c-tag :
40+ description : ' The tag to use for chain C'
41+ required : true
42+ type : string
43+ default : main
44+ chain-d-tag :
45+ default : main
46+ description : ' The tag to use for chain D'
47+ required : true
48+ type : string
3949 # upgrade-plan-name is only required during upgrade tests, and is otherwise ignored.
4050 upgrade-plan-name :
4151 default : ' '
7888 echo "Chain Image: ${{ inputs.chain-image }}"
7989 echo "Chain A Tag: ${{ inputs.chain-a-tag }}"
8090 echo "Chain B Tag: ${{ inputs.chain-b-tag }}"
91+ echo "Chain C Tag: ${{ inputs.chain-c-tag }}"
92+ echo "Chain D Tag: ${{ inputs.chain-d-tag }}"
8193 echo "Upgrade Plan Name: ${{ inputs.upgrade-plan-name }}"
8294 echo "Test Entry Point: ${{ inputs.test-entry-point }}"
8395 echo "Test: ${{ inputs.test }}"
@@ -205,6 +217,8 @@ jobs:
205217 CHAIN_UPGRADE_PLAN : ' ${{ inputs.upgrade-plan-name }}'
206218 CHAIN_A_TAG : ' ${{ inputs.chain-a-tag }}'
207219 CHAIN_B_TAG : ' ${{ inputs.chain-b-tag }}'
220+ CHAIN_C_TAG : ' ${{ inputs.chain-c-tag }}'
221+ CHAIN_D_TAG : ' ${{ inputs.chain-d-tag }}'
208222 E2E_CONFIG_PATH : ' ${{ inputs.e2e-config-path }}'
209223 strategy :
210224 fail-fast : false
@@ -243,6 +257,8 @@ jobs:
243257 CHAIN_IMAGE : ' ${{ inputs.chain-image }}'
244258 CHAIN_A_TAG : ' ${{ inputs.chain-a-tag }}'
245259 CHAIN_B_TAG : ' ${{ inputs.chain-b-tag }}'
260+ CHAIN_C_TAG : ' ${{ inputs.chain-c-tag }}'
261+ CHAIN_D_TAG : ' ${{ inputs.chain-d-tag }}'
246262 E2E_CONFIG_PATH : ' ${{ inputs.e2e-config-path }}'
247263 strategy :
248264 fail-fast : false
@@ -256,6 +272,7 @@ jobs:
256272 - entrypoint : TestTransferLocalhostTestSuite
257273 - entrypoint : TestConnectionTestSuite
258274 - entrypoint : TestInterchainAccountsGovTestSuite
275+ - entrypoint : TestForwardTransferSuite
259276 steps :
260277 - uses : actions/checkout@v4
261278 with :
0 commit comments