Skip to content
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
5 changes: 4 additions & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ npm install -g vite-plus@latest
npm install --global pnpm@next-12 --prefix /tmp/pnpm12 --allow-scripts=pnpm

# Install aube via npm (available as the `@endevco/aube` package).
# npm 12 blocks dependency lifecycle scripts by default, but aube's preinstall
# selects and installs its platform-specific native binary. Allow only aube's
# installer so the binary is available to the benchmark matrix.
# Non-fatal: aube may not have a working binary for all platforms (e.g. arm64).
# If it fails to install, the benchmark suite continues without aube.
if ! npm install -g @endevco/aube@latest; then
if ! npm install -g --allow-scripts=@endevco/aube @endevco/aube@latest; then
echo "Warning: aube installation failed (may not support this platform) — skipping aube benchmarks"
fi

Expand Down