Commit 592b596
committed
fix(e2e/docker): remove COPY of gitignored plugin README
The OpenCode E2E Docker image was copying packages/plugin/README.md
into /test/mc-opencode/README.md, but that file is gitignored — it's
regenerated locally by scripts/release.sh from the root README at
publish time. CI doesn't have the file on disk, so docker build
failed every time it ran on master:
ERROR: failed to compute cache key: failed to calculate checksum
of ref ... "/packages/plugin/README.md": not found
The COPY destination was also never read inside the image — pure
dead step. Removed it and left a comment explaining why future
edits shouldn't add it back. Verified locally:
docker buildx build ... → DONE 6.1s
docker run --rm ... → PASS: 10 FAIL: 0
Pi side was unaffected (Pi's README is committed) and Pi E2E was
already passing in CI.1 parent 72b0802 commit 592b596
1 file changed
Lines changed: 4 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
64 | | - | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
65 | 68 | | |
66 | 69 | | |
67 | 70 | | |
| |||
0 commit comments