forked from cosmos/ibc-go
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: workflow to trigger wasm E2Es with a specific tag (cosmos#5288)
Co-authored-by: Damian Nolan <damiannolan@gmail.com>
- Loading branch information
1 parent
6fe8b6c
commit 701228d
Showing
1 changed file
with
38 additions
and
0 deletions.
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,38 @@ | ||
name: Manual WASM 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: | ||
- TestGrandpaTestSuite | ||
chain-image: | ||
description: 'The image to use for chain A' | ||
required: true | ||
type: string | ||
default: "ghcr.io/cosmos/ibc-go-wasm-simd" | ||
chain-binary: | ||
description: 'Specify the chain binary to be used' | ||
required: true | ||
type: string | ||
default: "simd" | ||
chain-tag: | ||
description: 'Specify tag for the simapp' | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
e2e-manual-wasm: | ||
uses: ./.github/workflows/e2e-test-workflow-call.yml | ||
with: | ||
chain-image: "${{ github.event.inputs.chain-image }}" | ||
chain-a-tag: "${{ github.event.inputs.chain-tag }}" | ||
chain-b-tag: "${{ github.event.inputs.chain-tag }}" | ||
test-entry-point: "${{ github.event.inputs.test-entry-point }}" | ||
chain-binary: "${{ github.event.inputs.chain-binary }}" | ||
relayer-type: "hyperspace" |