Commit aa48c53
committed
ci: drop Windows target, fix --target flag with BURRITO_TARGET env
Three fixes to the release workflow:
1. **Remove Windows target from mix.exs** — user request. The
windows-latest runner reports 'ImageOS=win25-vs2026' which the
erlef/setup-beam action doesn't recognize (it only supports
win19/win22/win25 — not win25-vs2026). Rather than pin to an older
image (which is fragile), drop Windows support entirely.
- mix.exs: targets list now has 4 entries (macos/macos_x86/
linux/linux_arm) instead of 5
- justfile: release-rename no longer handles the windows case
- ci.yml: release matrix no longer includes the windows entry
- ci.yml: release-attach's GitHub Release body no longer has the
Windows row
2. **Replace 'mix release --target X' with BURRITO_TARGET env var**.
The --target flag is not a valid mix release option (it was silently
being ignored, leading to all targets being built on every runner).
Burrito itself accepts BURRITO_TARGET=<target-key> to build only
that single target, which is exactly what we want per-runner.
3. **Remove the windows binary from burrito_out/** — it was built
before this commit. Verified locally: 'just release' now produces
exactly 4 binaries (no Windows), renamed to the versioned
convention.
Tested locally:
$ BURRITO_TARGET=macos mix release → burrito_out/ado_macos only
$ BURRITO_TARGET=linux_arm mix release → burrito_out/ado_linux_arm only
$ just release → all 4 targets, renamed correctly
CI: green, 162 tests pass, actionlint clean.1 parent 96232c6 commit aa48c53
3 files changed
Lines changed: 9 additions & 17 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
222 | | - | |
223 | | - | |
224 | | - | |
225 | | - | |
226 | | - | |
227 | | - | |
228 | 222 | | |
229 | 223 | | |
230 | 224 | | |
| |||
252 | 246 | | |
253 | 247 | | |
254 | 248 | | |
255 | | - | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
256 | 254 | | |
257 | 255 | | |
258 | 256 | | |
259 | 257 | | |
260 | | - | |
| 258 | + | |
261 | 259 | | |
262 | 260 | | |
263 | 261 | | |
| |||
273 | 271 | | |
274 | 272 | | |
275 | 273 | | |
276 | | - | |
277 | 274 | | |
278 | 275 | | |
279 | 276 | | |
| |||
283 | 280 | | |
284 | 281 | | |
285 | 282 | | |
286 | | - | |
287 | 283 | | |
288 | 284 | | |
289 | 285 | | |
| |||
349 | 345 | | |
350 | 346 | | |
351 | 347 | | |
352 | | - | |
353 | 348 | | |
354 | 349 | | |
355 | 350 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | | - | |
75 | | - | |
| 74 | + | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
81 | 80 | | |
82 | 81 | | |
83 | 82 | | |
| |||
95 | 94 | | |
96 | 95 | | |
97 | 96 | | |
98 | | - | |
99 | 97 | | |
100 | 98 | | |
101 | 99 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
195 | 195 | | |
196 | 196 | | |
197 | 197 | | |
198 | | - | |
199 | | - | |
| 198 | + | |
200 | 199 | | |
201 | 200 | | |
202 | 201 | | |
| |||
0 commit comments