Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

os/linux/diagnostic: skip error on arm64 when HOMEBREW_ARM64_TESTING is set #19511

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Library/Homebrew/extend/os/linux/diagnostic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
end

def check_supported_architecture
return if Hardware::CPU.arch == :x86_64
return if Hardware::CPU.intel?
return if Homebrew::EnvConfig.developer? && ENV["HOMEBREW_ARM64_TESTING"].present? && Hardware::CPU.arm?

Check warning on line 78 in Library/Homebrew/extend/os/linux/diagnostic.rb

View check run for this annotation

Codecov / codecov/patch

Library/Homebrew/extend/os/linux/diagnostic.rb#L77-L78

Added lines #L77 - L78 were not covered by tests

<<~EOS
Your CPU architecture (#{Hardware::CPU.arch}) is not supported. We only support
Expand Down
Loading