Commit 6e91b9c
authored
feat: migrate to rolling 6-month container image (#1503)
## Summary
- Update toolkit from 3.4.1 to 3.6.0
- Remove custom executors (`rust_env`, `base-env`) in favor of toolkit
rolling executors
- Use `toolkit/rust_wasi_rolling` for Rust jobs with WASI support
- Use `toolkit/base_env` for base jobs
- Add `select_rust_version` command to custom jobs for automatic version
fallback
- Remove `docker-tag-suffix` parameter (no longer needed with rolling
image)
## Benefits
This migration enables:
- **Digest-pinned immutable builds** via Renovate automatic updates
- **Automatic version fallback** if MSRV is outside 6-month window
- **Simplified maintenance** with single multi-version image instead of
per-version tags
- **Supply chain security** through digest verification
## Changes
| Before | After |
|--------|-------|
| `jerusdp/ci-rust:1.88-wasi` | `jerusdp/ci-rust:rolling-6mo-wasi` |
| Custom `rust_env` executor | `toolkit/rust_wasi_rolling` |
| Custom `base-env` executor | `toolkit/base_env` |
| `cargo +stable` hardcoded | `cargo +${RUST_VERSION}` with fallback |
## Test plan
- [ ] CI pipeline passes with rolling image
- [ ] All existing tests pass
- [ ] WASM tests work correctly
- [ ] Custom jobs (test-suite, doc_tests, run_test_program) work with
version selection
🤖 Generated with [Claude Code](https://claude.com/claude-code)1 file changed
+14
-18
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | 11 | | |
15 | 12 | | |
16 | 13 | | |
| |||
43 | 40 | | |
44 | 41 | | |
45 | 42 | | |
46 | | - | |
| 43 | + | |
47 | 44 | | |
48 | 45 | | |
49 | 46 | | |
| |||
60 | 57 | | |
61 | 58 | | |
62 | 59 | | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
70 | 63 | | |
71 | 64 | | |
72 | 65 | | |
73 | | - | |
| 66 | + | |
| 67 | + | |
74 | 68 | | |
75 | 69 | | |
76 | 70 | | |
| |||
117 | 111 | | |
118 | 112 | | |
119 | 113 | | |
120 | | - | |
| 114 | + | |
| 115 | + | |
121 | 116 | | |
122 | 117 | | |
123 | 118 | | |
| |||
127 | 122 | | |
128 | 123 | | |
129 | 124 | | |
130 | | - | |
| 125 | + | |
| 126 | + | |
131 | 127 | | |
132 | 128 | | |
133 | 129 | | |
| |||
144 | 140 | | |
145 | 141 | | |
146 | 142 | | |
147 | | - | |
| 143 | + | |
| 144 | + | |
148 | 145 | | |
149 | 146 | | |
150 | 147 | | |
| |||
172 | 169 | | |
173 | 170 | | |
174 | 171 | | |
175 | | - | |
| 172 | + | |
| 173 | + | |
176 | 174 | | |
177 | 175 | | |
178 | 176 | | |
| |||
215 | 213 | | |
216 | 214 | | |
217 | 215 | | |
218 | | - | |
219 | 216 | | |
220 | 217 | | |
221 | 218 | | |
| |||
225 | 222 | | |
226 | 223 | | |
227 | 224 | | |
228 | | - | |
229 | 225 | | |
230 | 226 | | |
231 | 227 | | |
| |||
0 commit comments