-
Notifications
You must be signed in to change notification settings - Fork 0
352 lines (310 loc) · 11.4 KB
/
Copy pathci.yml
File metadata and controls
352 lines (310 loc) · 11.4 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
name: CI
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "20 4 * * *"
workflow_dispatch:
permissions:
contents: read
# Jobs that read the private edgeandnode/amp releases mint a short-lived
# GitHub App token via .github/actions/ci-token, using the org-provided
# AMP_APP_ID variable and AMP_APP_KEY secret (same mechanism as the amp
# repository's own CI).
jobs:
lint:
name: Lint (actionlint + shellcheck)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Run actionlint
# Pinned to the same actionlint version as .github/pre-commit-config.yaml
run: |
bash <(curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/rhysd/actionlint/v1.7.12/scripts/download-actionlint.bash) 1.7.12
./actionlint -color
- name: Setup just
uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3 # v4.0.0
- name: Extract, syntax-check, and shellcheck action scripts
run: just test-scripts
- name: Upload extracted scripts
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: action-scripts
path: extracted/
dry-run:
name: Script dry-run (${{ matrix.version }})
runs-on: ubuntu-latest
needs: lint
# Fork PRs don't receive the AMP_APP_KEY secret needed to mint a token
# that can read the private edgeandnode/amp releases; skip rather than
# fail (lint still runs).
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
strategy:
fail-fast: false
matrix:
# NOTE: 'nightly' is not tested — edgeandnode/amp currently publishes
# nightly binaries only on draft releases, so published nightly tags
# have no assets and resolution fails. Re-add once the release
# pipeline publishes assets on non-draft nightlies.
version: [stable, latest, none]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Mint CI token
id: ci-token
uses: ./.github/actions/ci-token
with:
app-id: ${{ vars.AMP_APP_ID }}
app-key: ${{ secrets.AMP_APP_KEY }}
- name: Download extracted scripts
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: action-scripts
path: extracted
- name: Dry-run platform detection
run: |
out="$(mktemp)"
envfile="$(mktemp)"
GITHUB_OUTPUT="${out}" GITHUB_ENV="${envfile}" bash extracted/platform.sh
grep -q '^platform=linux$' "${out}"
grep -q '^arch=x86_64$' "${out}"
grep -q '^amp-dir=' "${out}"
grep -q '^AMP_DIR=' "${envfile}"
- name: Dry-run version resolution (${{ matrix.version }})
env:
SETUP_AMP_VERSION: ${{ matrix.version }}
GITHUB_TOKEN: ${{ steps.ci-token.outputs.token }}
run: |
out="$(mktemp)"
GITHUB_OUTPUT="${out}" bash extracted/version.sh
case "${SETUP_AMP_VERSION}" in
nightly) grep -q '^version=nightly-' "${out}" ;;
none) grep -q '^version=none$' "${out}" ;;
*) grep -q '^version=v' "${out}" ;;
esac
- name: Dry-run version resolution (unknown version)
env:
SETUP_AMP_VERSION: v999.999.999
GITHUB_TOKEN: ${{ steps.ci-token.outputs.token }}
run: |
out="$(mktemp)"
if GITHUB_OUTPUT="${out}" bash extracted/version.sh; then
echo "Expected version resolution to fail for an unknown version"
exit 1
fi
test:
name: Install ${{ matrix.version || 'default' }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
# Fork PRs cannot read the private edgeandnode/amp releases; see dry-run
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
- macos-latest
- macos-15-intel
version:
# Empty string exercises the default version handling.
# NOTE: 'nightly' is not tested — see the dry-run matrix note.
- ""
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Mint CI token
id: ci-token
uses: ./.github/actions/ci-token
with:
app-id: ${{ vars.AMP_APP_ID }}
app-key: ${{ secrets.AMP_APP_KEY }}
- name: Run setup-amp
id: setup
uses: ./
with:
version: ${{ matrix.version }}
github-token: ${{ steps.ci-token.outputs.token }}
- name: Check resolved version output
env:
VERSION_INPUT: ${{ matrix.version }}
VERSION_RESOLVED: ${{ steps.setup.outputs.version }}
run: |
echo "Resolved: '${VERSION_INPUT}' -> '${VERSION_RESOLVED}'"
case "${VERSION_INPUT}" in
nightly)
case "${VERSION_RESOLVED}" in
nightly-*) ;;
*) echo "Expected a nightly-* tag"; exit 1 ;;
esac
;;
*)
case "${VERSION_RESOLVED}" in
v*) ;;
*) echo "Expected a v* tag"; exit 1 ;;
esac
;;
esac
- name: Check binaries are on PATH
run: |
command -v ampup
command -v ampd
ampd --version
# ampctl and ampsql are optional per-release binaries
if command -v ampctl > /dev/null; then
ampctl --version
else
echo "ampctl is not included in this release"
fi
if command -v ampsql > /dev/null; then
ampsql --version
else
echo "ampsql is not included in this release"
fi
test-explicit-version:
name: Install explicit version tag
runs-on: ubuntu-latest
# Fork PRs cannot read the private edgeandnode/amp releases; see dry-run
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Mint CI token
id: ci-token
uses: ./.github/actions/ci-token
with:
app-id: ${{ vars.AMP_APP_ID }}
app-key: ${{ secrets.AMP_APP_KEY }}
- name: Pick the current stable tag
id: pick
env:
GH_TOKEN: ${{ steps.ci-token.outputs.token }}
run: echo "tag=$(gh api repos/edgeandnode/amp/releases/latest --jq .tag_name)" >> "$GITHUB_OUTPUT"
- name: Run setup-amp
id: setup
uses: ./
with:
version: ${{ steps.pick.outputs.tag }}
github-token: ${{ steps.ci-token.outputs.token }}
- name: Check the pinned version was installed
env:
EXPECTED: ${{ steps.pick.outputs.tag }}
RESOLVED: ${{ steps.setup.outputs.version }}
run: |
[ "${RESOLVED}" = "${EXPECTED}" ]
ampd --version
test-ampup-only:
name: Install ampup only (version none)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
# No github-token needed: 'none' only bootstraps ampup from its public repo
- name: Run setup-amp
id: setup
uses: ./
with:
version: none
- name: Check only ampup is installed and on PATH
env:
VERSION_RESOLVED: ${{ steps.setup.outputs.version }}
CACHE_HIT: ${{ steps.setup.outputs.cache-hit }}
run: |
command -v ampup
ampup --version
[ "${VERSION_RESOLVED}" = "none" ]
[ "${CACHE_HIT}" = "false" ]
if command -v ampd > /dev/null; then
echo "Expected ampd to NOT be installed with version 'none'"
exit 1
fi
test-cache-save:
name: Cache (save)
runs-on: ubuntu-latest
# Fork PRs cannot read the private edgeandnode/amp releases; see dry-run
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
outputs:
version: ${{ steps.setup.outputs.version }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Mint CI token
id: ci-token
uses: ./.github/actions/ci-token
with:
app-id: ${{ vars.AMP_APP_ID }}
app-key: ${{ secrets.AMP_APP_KEY }}
- name: Run setup-amp
id: setup
uses: ./
with:
github-token: ${{ steps.ci-token.outputs.token }}
# No run_attempt in the key: 'Re-run failed jobs' must be able to
# restore the cache saved by a previous attempt
cache-key: setup-amp-ci-cache-test-${{ github.run_id }}
- run: ampd --version
test-cache-hit:
name: Cache (hit)
runs-on: ubuntu-latest
needs: test-cache-save
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Mint CI token
id: ci-token
uses: ./.github/actions/ci-token
with:
app-id: ${{ vars.AMP_APP_ID }}
app-key: ${{ secrets.AMP_APP_KEY }}
- name: Run setup-amp
id: setup
uses: ./
with:
version: ${{ needs.test-cache-save.outputs.version }}
github-token: ${{ steps.ci-token.outputs.token }}
cache-key: setup-amp-ci-cache-test-${{ github.run_id }}
- name: Check the cache was hit
env:
CACHE_HIT: ${{ steps.setup.outputs.cache-hit }}
run: |
[ "${CACHE_HIT}" = "true" ]
ampd --version
test-cache-disabled:
name: Cache (disabled)
runs-on: ubuntu-latest
# Fork PRs cannot read the private edgeandnode/amp releases; see dry-run
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Mint CI token
id: ci-token
uses: ./.github/actions/ci-token
with:
app-id: ${{ vars.AMP_APP_ID }}
app-key: ${{ secrets.AMP_APP_KEY }}
- name: Run setup-amp
id: setup
uses: ./
with:
github-token: ${{ steps.ci-token.outputs.token }}
cache: false
- name: Check no cache was used
env:
CACHE_HIT: ${{ steps.setup.outputs.cache-hit }}
run: |
[ "${CACHE_HIT}" = "false" ]
ampd --version
test-unsupported-platform:
name: Fails cleanly on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
# No token needed: the action fails at platform detection before any
# release API access
- name: Run setup-amp (expected to fail)
id: setup
continue-on-error: true
uses: ./
- name: Check the action failed with a clear error
shell: bash
env:
OUTCOME: ${{ steps.setup.outcome }}
run: |
if [ "${OUTCOME}" != "failure" ]; then
echo "Expected the action to fail on Windows, but the outcome was '${OUTCOME}'"
exit 1
fi