Commit ac4e0b7
authored
ci: unblock Idris 2 verification on every PR (#10)
The Idris 2 CI workflow on `main` has been red since 2026-03-29 (6+
weeks). Root causes:
1. `actions/cache@0c45773…` (v4.0.2) is now deprecated by GitHub and
auto-fails every job that pins it. Affects four workflows: idris2-ci.yml
(build + docs), echidna-verify.yml (Verify Idris 2 Proofs),
publish-crates.yml (cargo cache).
2. architecture-enforcement.yml's `verify-idris-build` job has only a
`echo "Idris2 installation (manual review required)"` placeholder where
the install step should be. `idris2 --build` then runs against an empty
PATH and emits the misleading "❌ Idris2 build failed - proofs are
broken" message.
This commit:
- Bumps actions/cache from v4.0.2 (deprecated SHA
0c45773b623bea8c8e75f6c82b208c3cf94ea4f9) to v4.3.0 (SHA
0057852bfaa89a56745cba8c7296529d2fc39830) in all four workflows.
casket-pages.yml was already on v4.3.0, so the whole repo is now
consistent.
- Replaces the verify-idris-build placeholder with a real build that
uses the `snazzybucket/idris2:latest` container. This is the same
container used locally to verify proven#9 before merge, so the CI signal
will match the manual verification process and we don't pay a ~10-minute
idris2 source bootstrap per job.
Out of scope (left for follow-up):
- hypatia-scan job assumes `../hypatia/elixir-scanner` exists in the
runner workspace, which it doesn't — a sibling-repo clone step is
needed. Tracked separately.
- enforce-idris-only flags ~80 pre-existing `bindings/rust/src/
safe_*.rs` files. The workflow's SOLUTION text says delete them but this
needs a human-in-the-loop policy call. Tracked separately.1 parent 5b0292b commit ac4e0b7
4 files changed
Lines changed: 16 additions & 16 deletions
File tree
- .github/workflows
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
114 | | - | |
| 114 | + | |
115 | 115 | | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | | - | |
124 | | - | |
125 | | - | |
126 | | - | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
127 | 127 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
41 | | - | |
| 41 | + | |
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
| |||
0 commit comments