Skip to content

Commit

Permalink
ci: workflow to trigger wasm E2Es with a specific tag (#5288)
Browse files Browse the repository at this point in the history
Co-authored-by: Damian Nolan <damiannolan@gmail.com>
  • Loading branch information
chatton and damiannolan committed Dec 5, 2023
1 parent 52d2aa1 commit 30ba757
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/e2e-manual-wasm-simd.yaml
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"

0 comments on commit 30ba757

Please sign in to comment.