-
Notifications
You must be signed in to change notification settings - Fork 0
368 lines (330 loc) · 13.3 KB
/
test.yml
File metadata and controls
368 lines (330 loc) · 13.3 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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
name: "Test"
on:
pull_request:
push:
branches: [main, develop]
schedule:
- cron: "0 4 * * 1"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
with:
severity: warning
- name: Validate JSON
run: |
FAIL=0
while IFS= read -r -d '' f; do
if ! python3 -m json.tool "$f" > /dev/null 2>&1; then
echo "ERROR: Invalid JSON: $f"
FAIL=1
fi
done < <(find . -name '*.json' -not -path './.git/*' -print0)
exit "$FAIL"
- name: Install uv
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
- name: Validate YAML
run: |
uvx [email protected] -d relaxed .github/workflows/
- name: Prettier check
run: |
npx [email protected] --check "**/*.{json,yml,yaml,md}" --ignore-path .gitignore
- name: Markdownlint
run: |
npx [email protected] "**/*.md" --ignore node_modules
- name: shfmt format check
run: |
curl -fsSL https://github.com/mvdan/sh/releases/download/v3.13.0/shfmt_v3.13.0_linux_amd64 \
-o /usr/local/bin/shfmt
echo "70aa99784703a8d6569bbf0b1e43e1a91906a4166bf1a79de42050a6d0de7551 /usr/local/bin/shfmt" | sha256sum -c -
chmod +x /usr/local/bin/shfmt
shfmt -ln bash -d -i 4 -ci src/ test/
- name: Check .sh files are executable
run: |
FAIL=0
while IFS= read -r -d '' f; do
if [[ ! -x "$f" ]]; then
echo "ERROR: $f is not executable"
FAIL=1
fi
done < <(find . -name '*.sh' -not -path './.git/*' -print0)
exit "$FAIL"
# Run per-scenario tests in parallel groups for faster CI.
# The 17 scenarios are split into 3 groups by estimated build cost.
# Each group dynamically filters scenarios.json to run only its subset.
test-scenarios:
name: test-scenarios (${{ matrix.group.name }})
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
strategy:
fail-fast: false
matrix:
group:
- name: fast
scenarios: >-
default_options
completions_pipeline
mcp_enabled
negative_validation
security_permissions
completions_disabled
- name: medium
scenarios: >-
custom_version
custom_install_path
custom_node_version
install_path_with_completions
mount_host_config
node_preinstalled
- name: slow
scenarios: >-
idempotency
upgrade_version
multi_feature_combo
alpine_specific
fedora_default
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Install devcontainer CLI
run: npm install -g @devcontainers/[email protected]
- name: Generate group scenarios.json
env:
SCENARIOS: ${{ matrix.group.scenarios }}
GROUP_NAME: ${{ matrix.group.name }}
run: |
FULL="test/claude-code/scenarios.json"
# Build a jq filter that selects only the named scenarios
JQ_FILTER=$(echo "${SCENARIOS}" | tr -s ' ' '\n' | sed 's/.*/"&"/' | paste -sd, | sed 's/^/[/;s/$/]/')
jq --argjson keys "${JQ_FILTER}" 'with_entries(select(.key as $k | $keys | index($k)))' "${FULL}" > /tmp/group-scenarios.json
echo "::group::scenarios.json for group '${GROUP_NAME}'"
cat /tmp/group-scenarios.json
echo "::endgroup::"
cp /tmp/group-scenarios.json "${FULL}"
- name: Run scenarios (${{ matrix.group.name }})
run: |
devcontainer features test --project-folder . 2>&1 | tee /tmp/scenario-test-output.log
# Workaround: devcontainers/[email protected] exits 0 even when feature install fails.
if grep -qE "Exit code [1-9][0-9]*|failed to install|Failed to launch|Failed:| FAIL:" /tmp/scenario-test-output.log; then
echo "ERROR: Test output contains failures."
exit 1
fi
# Positive assertion: verify at least one test passed
if ! grep -qE "[0-9]+ passed" /tmp/scenario-test-output.log; then
echo "ERROR: No pass markers found — test may not have run."
exit 1
fi
- name: Annotate install warnings
if: always()
run: |
mapfile -t warnings < <(grep -oP '(?<=claude-code feature\] WARNING: ).*' /tmp/scenario-test-output.log 2>/dev/null | tr -d '\r' | sort -u || true)
if [[ ${#warnings[@]} -gt 0 ]]; then
echo "## :warning: Install Warnings" >> "$GITHUB_STEP_SUMMARY"
for msg in "${warnings[@]}"; do
echo "- ${msg}" >> "$GITHUB_STEP_SUMMARY"
echo "::warning title=Install Warning::${msg}"
done
fi
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: logs-scenarios-${{ matrix.group.name }}
path: /tmp/scenario-test-output.log
retention-days: 7
# Run core assertions across all supported base images
test-image-matrix:
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
strategy:
fail-fast: false
max-parallel: 8
matrix:
image:
- "mcr.microsoft.com/devcontainers/base:ubuntu"
- "mcr.microsoft.com/devcontainers/base:debian"
- "mcr.microsoft.com/devcontainers/base:alpine"
- "mcr.microsoft.com/devcontainers/javascript-node"
- "ubuntu:24.04"
- "alpine:3.21"
- "archlinux:latest"
- "fedora:40"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Install devcontainer CLI
run: npm install -g @devcontainers/[email protected]
- name: Test on ${{ matrix.image }}
run: |
devcontainer features test \
--features claude-code \
--skip-scenarios \
--base-image "${{ matrix.image }}" \
--project-folder . 2>&1 | tee /tmp/test-output.log
# Workaround: devcontainers/[email protected] exits 0 even when feature install fails.
# Grep for known failure strings and fail explicitly. Revisit on CLI upgrade.
if grep -qE "Exit code [1-9][0-9]*|failed to install|Failed to launch|Failed:| FAIL:" /tmp/test-output.log; then
echo "ERROR: Test output contains failures."
exit 1
fi
# Positive assertion: verify at least one test passed
if ! grep -qE "[0-9]+ passed" /tmp/test-output.log; then
echo "ERROR: No pass markers found — test may not have run."
exit 1
fi
- name: Annotate install warnings
if: always()
run: |
mapfile -t warnings < <(grep -oP '(?<=claude-code feature\] WARNING: ).*' /tmp/test-output.log 2>/dev/null | tr -d '\r' | sort -u || true)
if [[ ${#warnings[@]} -gt 0 ]]; then
echo "## :warning: Install Warnings" >> "$GITHUB_STEP_SUMMARY"
for msg in "${warnings[@]}"; do
echo "- ${msg}" >> "$GITHUB_STEP_SUMMARY"
echo "::warning title=Install Warning::${msg}"
done
fi
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: logs-amd64-${{ strategy.job-index }}
path: /tmp/test-output.log
retention-days: 7
# Nightly-only extended image matrix for broader coverage
test-image-matrix-extended:
needs: lint
if: github.event_name == 'schedule'
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
strategy:
fail-fast: false
max-parallel: 5
matrix:
image:
- "rockylinux:9"
- "amazonlinux:2023"
- "debian:bookworm"
- "ubuntu:22.04"
- "alpine:3.20"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Install devcontainer CLI
run: npm install -g @devcontainers/[email protected]
- name: Test on ${{ matrix.image }}
run: |
devcontainer features test \
--features claude-code \
--skip-scenarios \
--base-image "${{ matrix.image }}" \
--project-folder . 2>&1 | tee /tmp/test-output.log
# Workaround: devcontainers/[email protected] exits 0 even when feature install fails.
# Grep for known failure strings and fail explicitly. Revisit on CLI upgrade.
if grep -qE "Exit code [1-9][0-9]*|failed to install|Failed to launch|Failed:| FAIL:" /tmp/test-output.log; then
echo "ERROR: Test output contains failures."
exit 1
fi
# Positive assertion: verify at least one test passed
if ! grep -qE "[0-9]+ passed" /tmp/test-output.log; then
echo "ERROR: No pass markers found — test may not have run."
exit 1
fi
- name: Annotate install warnings
if: always()
run: |
mapfile -t warnings < <(grep -oP '(?<=claude-code feature\] WARNING: ).*' /tmp/test-output.log 2>/dev/null | tr -d '\r' | sort -u || true)
if [[ ${#warnings[@]} -gt 0 ]]; then
echo "## :warning: Install Warnings" >> "$GITHUB_STEP_SUMMARY"
for msg in "${warnings[@]}"; do
echo "- ${msg}" >> "$GITHUB_STEP_SUMMARY"
echo "::warning title=Install Warning::${msg}"
done
fi
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: logs-extended-${{ strategy.job-index }}
path: /tmp/test-output.log
retention-days: 7
# arm64 tests via QEMU emulation on standard ubuntu-latest runners
test-arm64:
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 60 # QEMU emulation is significantly slower than native
permissions:
contents: read
strategy:
fail-fast: false
max-parallel: 2
matrix:
image:
- "ubuntu:24.04"
- "alpine:3.21"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up QEMU for arm64 emulation
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
- name: Install devcontainer CLI
run: npm install -g @devcontainers/[email protected]
- name: Test on ${{ matrix.image }} (arm64)
env:
DOCKER_DEFAULT_PLATFORM: linux/arm64
run: |
devcontainer features test \
--features claude-code \
--skip-scenarios \
--base-image "${{ matrix.image }}" \
--project-folder . 2>&1 | tee /tmp/test-output.log
# Workaround: devcontainers/[email protected] exits 0 even when feature install fails.
# Grep for known failure strings and fail explicitly. Revisit on CLI upgrade.
if grep -qE "Exit code [1-9][0-9]*|failed to install|Failed to launch|Failed:| FAIL:" /tmp/test-output.log; then
echo "ERROR: Test output contains failures."
exit 1
fi
# Positive assertion: verify at least one test passed
if ! grep -qE "[0-9]+ passed" /tmp/test-output.log; then
echo "ERROR: No pass markers found — test may not have run."
exit 1
fi
- name: Annotate install warnings
if: always()
run: |
mapfile -t warnings < <(grep -oP '(?<=claude-code feature\] WARNING: ).*' /tmp/test-output.log 2>/dev/null | tr -d '\r' | sort -u || true)
if [[ ${#warnings[@]} -gt 0 ]]; then
echo "## :warning: Install Warnings" >> "$GITHUB_STEP_SUMMARY"
for msg in "${warnings[@]}"; do
echo "- ${msg}" >> "$GITHUB_STEP_SUMMARY"
echo "::warning title=Install Warning::${msg}"
done
fi
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: logs-arm64-${{ strategy.job-index }}
path: /tmp/test-output.log
retention-days: 7