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
[]
= ["cargo:."]
# Config for 'dist'
[]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
= "0.32.0"
# CI backends to support
= "github"
# The installers to generate for each app — Unix-first (no powershell; confer isn't Windows-tested)
= ["shell", "homebrew"]
# Target platforms — macOS (both arches) + Linux (both arches, MUSL for static/portable binaries
# that run on any distro without a GLIBC_2.xx dependency; the classic prebuilt-binary pain).
= [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
]
# Path that installers should place binaries in
= "CARGO_HOME"
# Where to host releases
= "github"
# Publish the auto-generated formula into the shared codeshrew tap; name it after the BRAND
# (`brew install codeshrew/tap/confer`), not the crate `confer-cli`.
= "codeshrew/homebrew-tap"
= "confer"
= ["homebrew"]
# Write an install receipt from the shell installer so `confer update` can detect a standalone
# install (receipt present) vs a package-manager one (absent → it delegates to brew/cargo).
= true
# Inject `make ui` (build the web dashboard) into the build-local-artifacts job, right after
# checkout and before `dist build` — so build.rs (read-only) has ui/dist/index.html to embed.
# Path is relative to .github/workflows/; the fragment lives at .github/build-setup.yml (one
# level up) so GitHub doesn't mistake it for a standalone workflow. NOTE: this only takes
# effect on the NEXT `dist generate`/regeneration of release.yml — the same two steps are also
# hand-added directly to release.yml's build-local-artifacts job so it works right now without
# a full regen.
= "../build-setup.yml"
# musl needs the cross toolchain on the Linux builders.
[]
= { = ["x86_64-unknown-linux-musl", "aarch64-unknown-linux-musl"] }