Skip to content
Open
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
6 changes: 4 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Nightly binary builds — cross-compiled for 4 targets
# Nightly binary builds — cross-compiled for 5 targets
# APR-MONO: All deps are in-tree. No sibling repo checkouts needed.
# Spec: docs/specifications/release-system.md
#
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
echo "No commits in last 24h — skipping nightly build"
fi

# ── Cross-compile binaries (4 targets) ───────────────────
# ── Cross-compile binaries (5 targets) ───────────────────
build:
needs: check-activity
if: needs.check-activity.outputs.has_commits == 'true'
Expand All @@ -52,6 +52,8 @@ jobs:
include:
- target: x86_64-unknown-linux-gnu
runner: ubuntu-latest
- target: aarch64-unknown-linux-gnu
runner: ubuntu-24.04-arm # native ARM64, GA + free for public repos
- target: x86_64-apple-darwin
runner: macos-latest
- target: aarch64-apple-darwin
Expand Down
Loading