-
Notifications
You must be signed in to change notification settings - Fork 110
167 lines (163 loc) · 6.04 KB
/
e2e.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
name: e2e
on:
push:
branches:
- develop
- release/*
pull_request:
branches:
- "*"
merge_group:
schedule:
# run at 6AM UTC Daily
# 6AM UTC -> 11PM PT
- cron: "0 6 * * *"
workflow_dispatch:
inputs:
default-test:
type: boolean
required: false
default: false
upgrade-light-test:
type: boolean
required: false
default: false
upgrade-test:
type: boolean
required: false
default: false
admin-test:
type: boolean
required: false
default: false
upgrade-import-mainnet-test:
type: boolean
required: false
default: false
performance-test:
type: boolean
required: false
default: false
stateful-data-test:
type: boolean
required: false
default: false
concurrency:
group: e2e-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
matrix-conditionals:
runs-on: ubuntu-22.04
env:
GH_TOKEN: ${{ github.token }}
outputs: ${{ fromJSON(steps.matrix-conditionals.outputs.result)}}
steps:
# use api rather than event context to avoid race conditions (label added after push)
- id: matrix-conditionals
uses: actions/github-script@v7
with:
script: |
console.log(context);
if (context.eventName === 'pull_request') {
const { data: pr } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
});
const labels = pr.labels.map(label => label.name);
console.log("labels:", labels);
return {
DEFAULT_TESTS: true,
UPGRADE_TESTS: labels.includes('UPGRADE_TESTS'),
UPGRADE_LIGHT_TESTS: labels.includes('UPGRADE_LIGHT_TESTS'),
UPGRADE_IMPORT_MAINNET_TESTS: labels.includes('UPGRADE_IMPORT_MAINNET_TESTS'),
ADMIN_TESTS: labels.includes('ADMIN_TESTS'),
PERFORMANCE_TESTS: labels.includes('PERFORMANCE_TESTS'),
STATEFUL_DATA_TESTS: labels.includes('STATEFUL_DATA_TESTS'),
}
} else if (context.eventName === 'merge_group') {
return {
DEFAULT_TESTS: 'true',
}
} else if (context.eventName === 'push' && context.ref === 'refs/heads/develop') {
return {
DEFAULT_TESTS: 'true',
}
} else if (context.eventName === 'push' && context.ref.startsWith('refs/heads/release/')) {
return {
DEFAULT_TESTS: 'true',
UPGRADE_TESTS: 'true',
UPGRADE_LIGHT_TESTS: 'true',
UPGRADE_IMPORT_MAINNET_TESTS: 'true',
ADMIN_TESTS: 'true',
PERFORMANCE_TESTS: 'true',
STATEFUL_DATA_TESTS: 'true',
}
} else if (context.eventName === 'schedule') {
return {
DEFAULT_TESTS: 'true',
UPGRADE_TESTS: 'true',
UPGRADE_LIGHT_TESTS: 'true',
UPGRADE_IMPORT_MAINNET_TESTS: 'true',
ADMIN_TESTS: 'true',
PERFORMANCE_TESTS: 'true',
STATEFUL_DATA_TESTS: 'true',
}
} else if (context.eventName === 'workflow_dispatch') {
return {
DEFAULT_TESTS: context.payload.workflow_dispatch.inputs['default-test'],
UPGRADE_TESTS: context.payload.workflow_dispatch.inputs['upgrade-test'],
UPGRADE_LIGHT_TESTS: context.payload.workflow_dispatch.inputs['upgrade-light-test'],
UPGRADE_IMPORT_MAINNET_TESTS: context.payload.workflow_dispatch.inputs['upgrade-import-mainnet-test'],
ADMIN_TESTS: context.payload.workflow_dispatch.inputs['admin-test'],
PERFORMANCE_TESTS: context.payload.workflow_dispatch.inputs['performance-test'],
STATEFUL_DATA_TESTS: context.payload.workflow_dispatch.inputs['stateful-data-test'],
}
}
e2e:
needs: matrix-conditionals
strategy:
fail-fast: false
matrix:
include:
- make-target: "start-e2e-test"
runs-on: ubuntu-20.04
run: ${{ needs.matrix-conditionals.outputs.DEFAULT_TESTS == 'true' }}
- make-target: "start-upgrade-test"
runs-on: ubuntu-20.04
run: ${{ needs.matrix-conditionals.outputs.UPGRADE_TESTS == 'true' }}
- make-target: "start-upgrade-test-light"
runs-on: ubuntu-20.04
run: ${{ needs.matrix-conditionals.outputs.UPGRADE_LIGHT_TESTS == 'true' }}
- make-target: "start-upgrade-import-mainnet-test"
runs-on: buildjet-16vcpu-ubuntu-2204
run: ${{ needs.matrix-conditionals.outputs.UPGRADE_IMPORT_MAINNET_TESTS == 'true' }}
- make-target: "start-e2e-admin-test"
runs-on: ubuntu-20.04
run: ${{ needs.matrix-conditionals.outputs.ADMIN_TESTS == 'true' }}
- make-target: "start-e2e-performance-test"
runs-on: buildjet-4vcpu-ubuntu-2204
run: ${{ needs.matrix-conditionals.outputs.PERFORMANCE_TESTS == 'true' }}
- make-target: "start-e2e-import-mainnet-test"
runs-on: buildjet-16vcpu-ubuntu-2204
run: ${{ needs.matrix-conditionals.outputs.STATEFUL_DATA_TESTS == 'true' }}
name: ${{ matrix.make-target }}
uses: ./.github/workflows/reusable-e2e.yml
with:
make-target: ${{ matrix.make-target }}
runs-on: ${{ matrix.runs-on}}
run: ${{ matrix.run }}
secrets: inherit
# this allows you to set a required status check
e2e-ok:
runs-on: ubuntu-22.04
needs: e2e
if: always()
steps:
- run: |
result="${{ needs.e2e.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
exit 1
fi