Skip to content
Merged
Show file tree
Hide file tree
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 .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
- os: ubuntu-24.04
platform: linux
arch: x64
- os: ubuntu-24.04-arm
platform: linux
arch: arm64
- os: macos-latest
platform: darwin
arch: arm64
Expand Down Expand Up @@ -137,7 +140,7 @@ jobs:
node-version: '20'
registry-url: 'https://registry.npmjs.org'

# Download all three platform artifacts into prebuilds-staging/
# Download all platform artifacts into prebuilds-staging/
# Each lands at prebuilds-staging/prebuilds-{platform}-{arch}/
- name: Download all prebuilt artifacts
uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ladybugmem/icebug",
"version": "12.7.0",
"version": "12.8.0",
"description": "Node.js bindings for icebug – high-performance graph analytics (NetworKit fork with Arrow CSR support)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions scripts/download-icebug.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/env bash
# download-icebug.sh — fetch the platform-specific icebug prebuilt into vendor/
# Usage: ./scripts/download-icebug.sh [version]
# version optional tag, e.g. "12.7" (default: 12.7)
# version optional tag, e.g. "12.8" (default: 12.8)
set -euo pipefail

REPO="Ladybug-Memory/icebug"
VENDOR_DIR="$(cd "$(dirname "$0")/.." && pwd)/vendor"
DEFAULT_TAG="12.7"
DEFAULT_TAG="12.8"

# ---------------------------------------------------------------------------
# Resolve version tag
Expand Down
Loading