-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
354 lines (281 loc) Β· 9.07 KB
/
Copy pathdefault.yml
File metadata and controls
354 lines (281 loc) Β· 9.07 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
name: Default
on:
push:
branches:
- master
pull_request:
workflow_call:
jobs:
clean:
name: Clean
runs-on: depot-ubuntu-24.04-arm
permissions:
contents: read
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
id: go
- name: Install tools
run: make install
- name: Assets
run: make assets
- name: Docs
run: make docs
- name: Porcelain
run: make porcelain
build:
name: Build
runs-on: depot-ubuntu-24.04-arm
permissions:
contents: read
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
id: go
- uses: voidzero-dev/setup-vp@v1
with:
node-version: "26"
cache: true
- run: mkdir dist && touch dist/empty
- name: Build
run: make build
test:
name: Test
runs-on: depot-ubuntu-24.04-arm
permissions:
contents: read
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
id: go
- name: Test
run: mkdir dist && touch dist/empty && make test
lint:
name: Lint
runs-on: depot-ubuntu-24.04-arm
permissions:
contents: read
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
id: go
- run: mkdir dist && touch dist/empty
- name: Lint
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9
with:
version: latest
args: --timeout 5m
- name: License
run: make license
ui:
name: UI
permissions:
contents: read
actions: write
runs-on: depot-ubuntu-24.04-arm
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: voidzero-dev/setup-vp@v1
with:
node-version: "26"
cache: true
- name: Install
run: make install-ui
- name: Restore vp task cache
id: vp-cache
uses: actions/cache/restore@v6
with:
path: node_modules/.vite/task-cache
key: ${{ runner.os }}-${{ runner.arch }}-vp-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-vp-
- name: OpenAPI
# backport release tags may not have the openapi target yet
run: if grep -q '^openapi' Makefile; then make openapi; fi
- name: Lint
run: make lint-ui
- name: Test
run: make test-ui
- name: License
run: make license-ui
- name: Build UI
run: make ui
- name: Save vp task cache
# avoid cache thrashing by nightly and pull requests
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: actions/cache/save@v6
with:
path: node_modules/.vite/task-cache
key: ${{ steps.vp-cache.outputs.cache-primary-key }}
- name: Cache dist
# only the release and nightly builds consume this, both keyed by the
# master or tag sha. Pull request entries would never be restored
if: github.event_name == 'push'
uses: actions/cache/save@v6
id: cache-dist
with:
path: dist
key: ${{ runner.os }}-${{ github.sha }}-dist
- name: Porcelain
run: |
test -z "$(git status --porcelain)" || (git status; git diff; false)
integration:
name: Integration
runs-on: depot-ubuntu-24.04-arm-32
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
id: go
- uses: voidzero-dev/setup-vp@v1
with:
node-version: "26"
cache: true
- name: Install
run: make install-ui
- name: Restore vp task cache
# restore only, the UI job owns saving the cache
uses: actions/cache/restore@v6
with:
path: node_modules/.vite/task-cache
key: ${{ runner.os }}-${{ runner.arch }}-vp-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-vp-
- name: Build UI
run: make ui
- name: Build Go
run: make build
- name: Get Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').packages['node_modules/@playwright/test'].version)")" >> $GITHUB_ENV
- name: Cache Playwright browsers
uses: actions/cache/restore@v6
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Install Playwright (browsers + deps)
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: vpx playwright install --with-deps chromium
timeout-minutes: 5
- name: Save Playwright browsers
if: github.ref == 'refs/heads/master' && steps.playwright-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v6
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Run tests
run: vpx playwright test
timeout-minutes: 20
env:
TZ: Europe/Berlin
- name: Upload Playwright Report
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 14
- name: Upload Playwright Raw Test Results
uses: actions/upload-artifact@v7
if: failure()
with:
name: playwright-test-results
path: test-results/
retention-days: 2
# fork pull requests cannot use Depot's cache and fall back to the GitHub one,
# which only master can seed for them. Must not run on a Depot runner, those
# write to Depot's cache instead
warm-fork-cache-go:
name: Warm fork cache (Go)
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-24.04-arm
permissions:
contents: read
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
# setup-go puts ImageOS in the cache key, and GitHub's arm image reports
# ubuntu24-arm64 where Depot's reports ubuntu24. Without the override the
# warmed entry never matches the key a fork run looks for
- uses: actions/setup-go@v7
env:
ImageOS: ubuntu24
with:
go-version-file: go.mod
id: go
# on a hit setup-go does not save again, so building would populate nothing
- name: Build
if: steps.go.outputs.cache-hit != 'true'
run: mkdir dist && touch dist/empty && make build
warm-fork-cache-ui:
name: Warm fork cache (UI)
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-24.04-arm
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: voidzero-dev/setup-vp@v1
with:
node-version: "26"
cache: true
- name: Get Playwright version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./package-lock.json').packages['node_modules/@playwright/test'].version)")" >> $GITHUB_ENV
- name: Cache Playwright browsers
uses: actions/cache@v6
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Install
run: make install-ui
- name: Install Playwright (browsers + deps)
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: vpx playwright install --with-deps chromium
timeout-minutes: 5
# the UI job saves its task cache on a Depot runner, so forks never see
# it. Run the same tasks here to seed the GitHub-hosted cache
- name: Restore vp task cache
id: vp-cache
uses: actions/cache/restore@v6
with:
path: node_modules/.vite/task-cache
key: ${{ runner.os }}-${{ runner.arch }}-vp-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-vp-
- name: Warm vp tasks
run: make openapi lint-ui test-ui ui
- name: Save vp task cache
uses: actions/cache/save@v6
with:
path: node_modules/.vite/task-cache
key: ${{ steps.vp-cache.outputs.cache-primary-key }}