-
Notifications
You must be signed in to change notification settings - Fork 11
60 lines (56 loc) · 1.55 KB
/
e2e-test-rollapp-evm-upgrade-workflow-call.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
on:
workflow_call:
inputs:
rollapp_evm_ci:
description: "CI run on Rollapp-EVM Repo"
required: false
type: string
default: "latest"
dymension_ci:
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
type: string
default: ""
jobs:
# e2e-tests-by runs the actual go test command to trigger the test.
rollapp-evm-upgrade:
strategy:
matrix:
tests:
- "e2e-test-rollapp-upgrade-evm"
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: dymensionxyz/e2e-tests
ref: main
- name: Set up Go 1.21
uses: actions/setup-go@v4
with:
go-version: "1.21.4"
- name: Download Tarball Artifact
uses: actions/download-artifact@v4
with:
name: e2e
path: /tmp
- name: Load Docker Image
run: |
docker image load -i /tmp/e2e.tar
docker image ls -a
- name: Rollapp-EVM Upgrade E2E Tests
run: sudo -E make ${{ matrix.tests }}
env:
ROLLAPP_EVM_CI: ${{ inputs.rollapp_evm_ci }}
UPGRADE_ROLLAPP_EVM_NAME: ${{ inputs.upgrade_name }}
RELAYER_CI: ${{ inputs.relayer_ci }}