fix: make aube installation non-fatal in setup.sh#116
Merged
Conversation
aube@1.13.0 (published 2026-05-13) has a broken arm64 binary — the @endevco/aube-linux-arm64 platform package declares bin/aubr but the file doesn't exist in the tarball, causing npm install to fail with ENOENT during preinstall. Rather than pinning to a specific version, make the aube install non-fatal so a broken aube release doesn't block the entire benchmark suite (all 41+ jobs). If aube fails to install, a warning is logged and the suite continues benchmarking all other package managers.
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.
Problem
All benchmark jobs on main have been failing since ~May 14 03:23 UTC. The root cause is
@endevco/aube@1.13.0(published May 13 23:22 UTC) which removedbin/aubrandbin/aubxfrom its arm64 platform package but the installer (installArchSpecificPackage.js) still expects them, causingnpm install -g @endevco/aube@latestto fail with:Since
setup.shruns withset -e, this kills the entire step — all 60+ benchmark matrix jobs fail before even reaching the benchmarks.Fix
Wrap the
@endevco/aubeinstall inif !so a broken aube release doesn't block the entire suite. If aube fails to install, a warning is logged and benchmarks continue with all other package managers.This is a cherry-pick of 34f3637 from the
feat/vlt-registry-defaultbranch, which has already been verified to fix the issue (run #25835464935 succeeded with this change).Verification
bin/aubr)bin/aubr)feat/vlt-registry-defaultrun with this fix: May 14 01:03 UTC