-
-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
envoy 1.33.0 #205269
base: master
Are you sure you want to change the base?
envoy 1.33.0 #205269
Conversation
Failures both in CI and on Apple Silicon (my laptop) Linux
Apple Silicon Laptop
|
@zirain I saw you ran into this in istio. If you have a chance, can you recommend any way to proceed this in homebrew for envoy? istio/proxy#5154 |
@codefromthecrypt I can build on my macm1(with clang 16). |
yep, clang version must be the old version like 14 or 16 (i think 14 is the one currently envoy is using for all platform (mac/ubuntu)) |
@codefromthecrypt during my debuging on #205289, looks like this related to curl upgrade from 8.4 to 8.9, not 100% sure about it, hope this give you some hint. I cannot set up a test locally, as my ruby broken on my mac. |
Envoy could just disable curl man pages ( Footnotes |
fb190b4
to
e5fd03c
Compare
e5fd03c
to
1fe8ceb
Compare
This should be turned off as it's not needed. Ref Homebrew/homebrew-core#205269 Fix #37470 Signed-off-by: Takeshi Yoneda <[email protected]>
e62d400
to
c185ca6
Compare
ARM macOS passes. Linux is going to take some time to start but based on prior run (https://github.com/Homebrew/homebrew-core/actions/runs/12942003180/job/36099164302#step:4:352) it will fail:
Closest upstream reports were:
Not sure but guessing that compiling with LLVM Clang and linking to GCC libstdc++ isn't behaving well in newer Envoy versions (or newer versions of Clang may have elevated warning to error). In Homebrew, build:libc++ --action_env=BAZEL_LINKLIBS=-l%:libc++.a:-l%:libc++abi.a EDIT: If error still occurs, could try reducing error. May also want to check if issue with GCC still occurs (I had to switch build to clang/lld back in https://github.com/Homebrew/homebrew-core/pull/166177/files) |
Signed-off-by: Adrian Cole <[email protected]>
c185ca6
to
4ec9dd3
Compare
@cho-m thanks for the help and I hope I didn't lose any of your work on rebase. Ack that disabling libcurl docs and removing installation of examples worked for me locally. FWIW macOS is the most important OS to have working, but also ideal if we can keep linux working also. Great job so far! |
@zirain this is mostly a self-note for me in case we force push it out later on envoy-1.33.1, but I often forget patch syntax here and we occasionally need it for envoy. Here's what's working to use something not landed, yet. stable do
url "https://github.com/envoyproxy/envoy/archive/refs/tags/v1.33.0.tar.gz"
sha256 "fd726135761ea163f0312d49960c602c9b4fcb78ca3c36600975fed16e0787c4"
# Backport disabling libcurl docs to fix build. Remove in the next release.
patch do
url "https://github.com/envoyproxy/envoy/commit/ae6cb3254cbf98999993d0120d289a207a57f825.patch?full_index=1"
sha256 "a5c25bad6884f382909036ac9e8c812c5d3ba3104f2f1d24f5035acf705b0d74"
end
end |
HOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
, where<formula>
is the name of the formula you're submitting?brew test <formula>
, where<formula>
is the name of the formula you're submitting?brew audit --strict <formula>
(after doingHOMEBREW_NO_INSTALL_FROM_API=1 brew install --build-from-source <formula>
)? If this is a new formula, does it passbrew audit --new <formula>
?