Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): run a specific e2e test version which targets the previous relayer version #357

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/e2e-test-evm-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
required: false
type: string
default: "latest"
relayer_ci:
description: "CI run on Relayer Repo"
required: false
type: string
default: "main-dym"
test:
description: 'test name to run as standalone'
required: false
Expand Down Expand Up @@ -78,5 +83,6 @@ jobs:
env:
ROLLAPP_EVM_CI: ${{ inputs.rollapp_evm_ci }}
DYMENSION_CI: ${{ inputs.dymension_ci }}
RELAYER_CI: ${{ inputs.relayer_ci }}


8 changes: 7 additions & 1 deletion .github/workflows/e2e-test-hub-upgrade-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
required: false
type: string
default: "latest"
relayer_ci:
description: "CI run on Relayer Repo"
required: false
type: string
default: "main-dym"
upgrade_name:
description: "Upgrade Name be used by e2e-tests"
required: false
Expand Down Expand Up @@ -46,4 +51,5 @@ jobs:
run: make ${{ matrix.tests }}
env:
DYMENSION_CI: ${{ inputs.dymension_ci }}
UPGRADE_NAME: ${{ inputs.upgrade_name }}
UPGRADE_NAME: ${{ inputs.upgrade_name }}
RELAYER_CI: ${{ inputs.relayer_ci }}
16 changes: 11 additions & 5 deletions .github/workflows/e2e-test-rollapp-evm-upgrade-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ on:
type: string
default: "latest"
dymension_ci:
description: "CI run on Dymension Repo"
required: false
type: string
default: "latest"
description: "CI run on Dymension Repo"
required: false
type: string
default: "latest"
relayer_ci:
description: "CI run on Relayer Repo"
required: false
type: string
default: "main-dym"
upgrade_name:
description: "Upgrade Name be used by e2e-tests"
required: true
Expand Down Expand Up @@ -51,4 +56,5 @@ jobs:
run: make ${{ matrix.tests }}
env:
ROLLAPP_EVM_CI: ${{ inputs.rollapp_evm_ci }}
UPGRADE_ROLLAPP_EVM_NAME: ${{ inputs.upgrade_name }}
UPGRADE_ROLLAPP_EVM_NAME: ${{ inputs.upgrade_name }}
RELAYER_CI: ${{ inputs.relayer_ci }}
16 changes: 11 additions & 5 deletions .github/workflows/e2e-test-rollapp-wasm-upgrade-workflow-call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ on:
type: string
default: "latest"
dymension_ci:
description: "CI run on Dymension Repo"
required: false
type: string
default: "latest"
description: "CI run on Dymension Repo"
required: false
type: string
default: "latest"
relayer_ci:
description: "CI run on Relayer Repo"
required: false
type: string
default: "main-dym"
upgrade_name:
description: "Upgrade Name be used by e2e-tests"
required: false
Expand Down Expand Up @@ -51,4 +56,5 @@ jobs:
run: make ${{ matrix.tests }}
env:
ROLLAPP_WASM_CI: ${{ inputs.rollapp_wasm_ci }}
UPGRADE_ROLLAPP_WASM_NAME: ${{ inputs.upgrade_name }}
UPGRADE_ROLLAPP_WASM_NAME: ${{ inputs.upgrade_name }}
RELAYER_CI: ${{ inputs.relayer_ci }}
6 changes: 6 additions & 0 deletions .github/workflows/e2e-test-wasm-workflow-call.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on:
required: false
type: string
default: "latest"
relayer_ci:
description: "CI run on Relayer Repo"
required: false
type: string
default: "main-dym"
test:
description: 'test name to run as standalone'
required: false
Expand Down Expand Up @@ -77,4 +82,5 @@ jobs:
env:
ROLLAPP_WASM_CI: ${{ inputs.rollapp_wasm_ci }}
DYMENSION_CI: ${{ inputs.dymension_ci }}
RELAYER_CI: ${{ inputs.relayer_ci }}

Loading