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
29 changes: 29 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# List available commands
default:
@just --list

# Build every SPM target (Core, auditctlKit, auditctl, guest agent, protocol)
[group("dev")]
build:
cd privacycommand && swift build

# Run the full SPM test suite (same as CI)
[group("dev")]
test:
cd privacycommand && swift test

# Tag v<version> and push it to trigger the release workflow (tag must match MARKETING_VERSION)
[group("ship")]
release version:
git tag "v{{version}}"
git push origin "v{{version}}"

# Build, sign, notarize and package the DMG locally (needs Developer ID + notary env)
[group("ship")]
release-local:
./scripts/release.sh

# Remove SPM build output
[group("dev")]
clean:
rm -rf privacycommand/.build