Skip to content

Commit 9b1efcd

Browse files
authored
Merge pull request #19641 from Homebrew/support_tiers
Add Support Tiers documentation
2 parents 50bdbd6 + 7f17aec commit 9b1efcd

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-0
lines changed

docs/Support-Tiers.md

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
---
2+
last_review_date: "2025-03-28"
3+
---
4+
5+
# Support Tiers
6+
7+
Homebrew has three support tiers.
8+
These set expectations for how well Homebrew will run on a given configuration.
9+
10+
## Tier 1
11+
12+
A Tier 1 supported configuration is one in which:
13+
14+
- you're setup to get the best experience using Homebrew
15+
- we will aim to fix reproducible bugs affecting this configuration
16+
- we will not output warnings about running on this configuration
17+
- we have CI coverage for automated testing and building bottles for this configuration
18+
- your support is best met through Homebrew's issue trackers
19+
- Homebrew may block merging a PR if it doesn't build properly on this configuration
20+
21+
### macOS
22+
23+
For Tier 1 support, Homebrew on macOS must be all of:
24+
25+
- running on official Apple hardware (e.g. not a "Hackintosh" or VM)
26+
- running a version of macOS supported by Apple on that hardware (e.g. not using OpenCore Legacy Patcher)
27+
- running a version of macOS with Homebrew CI coverage (i.e. the latest stable or prerelease version, two preceding versions)
28+
- installed in the default prefix (i.e. `/opt/homebrew` on Apple Silicon, `/usr/local` on Intel x86_64)
29+
- running on a supported architecture (i.e. Apple Silicon or Intel x86_64)
30+
- not building official packages from source
31+
- installed on your Mac's built-in hard-drive (i.e. not external/removable storage)
32+
- you have `sudo` access on your system
33+
- the Xcode Command Line Tools are installed and fully up-to-date
34+
35+
### Linux
36+
37+
For Tier 1 support, Homebrew on Linux must be all of:
38+
39+
- running on Ubuntu or a Homebrew-provided Docker image
40+
- have a system `glibc` >= 2.35
41+
- if running Ubuntu, running an Ubuntu version in "standard support": <https://ubuntu.com/about/release-cycle>
42+
- installed in the default prefix (i.e. `/home/linuxbrew/.linuxbrew`)
43+
- running on a supported architecture (i.e. Intel x86_64)
44+
- not building official packages from source
45+
- you have `sudo` access on your system
46+
47+
## Tier 2
48+
49+
A Tier 2 supported configuration is one in which any of:
50+
51+
- you get a subpar but potentially still usable experience using Homebrew
52+
- we review PRs that fix bugs affecting this configuration but will not aim to fix bugs
53+
- we will output `brew doctor` warnings running on this configuration
54+
- we have partial CI coverage for testing and building bottles for this configuration so some bottles will not be available
55+
- we will close issues only affecting this configuration
56+
- your support is best met through Homebrew's Discussions
57+
58+
Tier 2 configurations include:
59+
60+
- macOS prereleases before we state they are Tier 1 (e.g. in March 2025, macOS 16, whatever it ends up being called)
61+
- Linux versions where a system `glibc` < 2.35 (but still >= 2.13), so the Homebrew `glibc` formula is automatically installed
62+
- using official packages that need to be built from source due to installing Homebrew outside the default prefix
63+
(i.e. `/opt/homebrew` on Apple Silicon, `/usr/local` on Apple Intel x86_64, `/home/linuxbrew/.linuxbrew` for Linux)
64+
- running on a not-yet-supported architecture (i.e. Linux ARM64/AARCH64)
65+
66+
## Tier 3
67+
68+
A Tier 3 supported configuration is one in which:
69+
70+
- you get a poor but not completely broken experience using Homebrew
71+
- we strongly recommend migrating to a Tier 1 or 2 configuration or a non-Homebrew tool
72+
- we will only review PRs with a very high bar: any changes must be proven by the author to fix (not work around) an issue and not come with high maintainability costs (no patches)
73+
- we will generally not aim to fix bugs ourselves affecting this configuration
74+
- we may intentionally regress functionality on this configuration if it e.g. improves things for other configuration
75+
- we will output noisy warnings running on this configuration
76+
- we are lacking any CI coverage for testing or building bottles for this configuration so few bottles will be available
77+
- we will close without response issues only affecting this configuration
78+
- your support is best met through Homebrew's Discussions
79+
80+
Tier 3 configurations include:
81+
82+
- macOS versions for which we no longer provide CI coverage and Apple no longer provides most security updates for (e.g. as of March 2025, macOS Monterey/12 and older)
83+
- building official packages from source when binary packages are available
84+
- installing Homebrew outside the default prefix (i.e. `/opt/homebrew` on Apple Silicon, `/usr/local` on Apple Intel x86_64, `/home/linuxbrew/.linuxbrew` for Linux)
85+
- installing formulae using `--HEAD`
86+
- installing deprecated or disabled formulae
87+
88+
## Unsupported
89+
90+
An unsupported configuration is one in which:
91+
92+
- Homebrew will refuse to run at all without third-party patching
93+
- You must migrate to another tool (e.g. Tigerbrew, MacPorts, Linux system package managers etc.)
94+
95+
Tier 3 configurations include:
96+
97+
- FreeBSD
98+
- macOS 10.6
99+
- Beowulf clusters
100+
- Nokia 3210s
101+
- CPUs built inside of Minecraft
102+
- toasters
103+
104+
## Unsupported Software
105+
106+
Note that all packages installed from third-party taps outside of the Homebrew GitHub organisation are unsupported by default.
107+
108+
We may assist the maintainers/contributors/developers of such packages to fix bugs with the Homebrew formula/cask/tap system, but we are not responsible for resolving issues when using that software.
109+
110+
Bugs that only manifest when using third-party formulae/casks may be closed.

docs/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ last_review_date: "2025-02-08"
99
- [`brew` manual page (command documentation)](Manpage.md)
1010
- [Homebrew Blog (news on major updates)](https://brew.sh/blog/)
1111
- [Installation](Installation.md)
12+
- [Support Tiers](Support-Tiers.md)
1213
- [Troubleshooting](Troubleshooting.md)
1314
- [FAQ (Frequently Asked Questions)](FAQ.md)
1415
- [Common Issues](Common-Issues.md)

0 commit comments

Comments
 (0)