Mark nebi and nebi-desktop linux-64 0.10.5 and 0.11 as broken#2104
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Marking the following four files broken —
nebi-desktop(linux-64) and thenebiumbrella metapackage (linux-64) for versions 0.10.5 and 0.11:nebi-cli(linux-64) is unaffected and stays onmain— the CLI does not link WebKitGTK. macOS and Windows builds of all three outputs are unaffected and stay onmain.Why broken
nebi-desktopon linux-64 crashes within ~1–2 seconds of launch on any system withlibwebkit2gtk-4.1 >= 2.46(e.g. Ubuntu 24.04+, Fedora 40+) with a Go runtime fatal:Root cause: WebKitGTK's JSC installs
SIGSEGVhandlers withoutSA_ONSTACK, which Go's runtime refuses to tolerate. Wails 2.12'sg_idle_addmitigation runs before JSC installs its handlers (JSC installs them lazily on first JS context creation), so it does not catch this case. Full analysis, reproducer, bisect, and Wails cross-refs in nebari-dev/nebi#350.Bisected to commit nebari-dev/nebi@1546d97, first shipped in v0.10.5 — v0.10.4 is the last known-good release. Verified locally that
pixi global install nebi==0.10.4 && nebi-desktopruns cleanly on the same affected host.Why include the umbrella
nebitooThe
nebipackage pinsnebi-desktop ==${{ version }}in itsrunrequirements (see recipe.yaml). If onlynebi-desktopwere marked broken on linux-64,nebion linux-64 would still resolve and then fail to install with a confusing dep error. Markingnebidirectly gives the solver a clean miss so it falls back to 0.10.4.Why not other arches / not
nebi-clinebi-clidoes not link WebKitGTK and is unaffected; Linux CLI users can continue topixi global install nebi-clion any version.Forward path
The fix (a Linux-only cgo patch that periodically re-applies
SA_ONSTACK, ~25 lines) will ship in a new release, 0.11.1, which the feedstock will build as a new artifact. These older 0.10.5 / 0.11 builds remain permanently broken — there is no relabel plan.Maintainer ack
Feedstock maintainers per
recipe.yaml: @viniciusdc, @Adam-D-Lewis. I am @Adam-D-Lewis and concur with this request.