feat(HAI-080): add code signing for macOS and Windows release binaries

- Add macOS signing script with codesign, notarization, and stapling support
- Add Windows signing script using signtool with PFX certificate
- Integrate signing steps into release and test-release workflows
- Add signing workflow tests and verification coverage
- Add CODE_SIGNING.md documentation and update README
This commit is contained in:
Dustin Byrne
2026-03-26 01:03:16 -04:00
parent a12550d625
commit d37f887552
7 changed files with 512 additions and 1 deletions

118
scripts/sign-macos.sh Executable file
View File

@@ -0,0 +1,118 @@
#!/usr/bin/env bash
# sign-macos.sh — Codesign and notarize a macOS binary for Gatekeeper.
#
# Usage:
# APPLE_CERTIFICATE_BASE64=... APPLE_CERTIFICATE_PASSWORD=... \
# APPLE_IDENTITY=... APPLE_ID=... APPLE_TEAM_ID=... APPLE_APP_PASSWORD=... \
# bash scripts/sign-macos.sh path/to/binary
#
# Environment variables (all required):
# APPLE_CERTIFICATE_BASE64 — Base64-encoded .p12 Developer ID Application certificate
# APPLE_CERTIFICATE_PASSWORD — Password for the .p12 certificate
# APPLE_IDENTITY — Signing identity (e.g., "Developer ID Application: Your Name (TEAMID)")
# APPLE_ID — Apple ID email for notarization
# APPLE_TEAM_ID — Apple Developer Team ID
# APPLE_APP_PASSWORD — App-specific password for notarization
#
# The script is idempotent — re-running on an already-signed binary will re-sign it.
set -euo pipefail
# ── Validate arguments ────────────────────────────────────────────────
BINARY="${1:-}"
if [[ -z "$BINARY" ]]; then
echo "ERROR: No binary path provided."
echo "Usage: $0 <path-to-binary>"
exit 1
fi
if [[ ! -f "$BINARY" ]]; then
echo "ERROR: Binary not found: $BINARY"
exit 1
fi
# ── Validate environment variables ────────────────────────────────────
REQUIRED_VARS=(
APPLE_CERTIFICATE_BASE64
APPLE_CERTIFICATE_PASSWORD
APPLE_IDENTITY
APPLE_ID
APPLE_TEAM_ID
APPLE_APP_PASSWORD
)
for var in "${REQUIRED_VARS[@]}"; do
if [[ -z "${!var:-}" ]]; then
echo "ERROR: Required environment variable $var is not set."
exit 1
fi
done
echo "==> Signing macOS binary: $BINARY"
# ── Set up temporary keychain ─────────────────────────────────────────
KEYCHAIN_NAME="signing-$(date +%s).keychain-db"
KEYCHAIN_PASSWORD="$(openssl rand -hex 16)"
CERT_FILE="$(mktemp -t cert.XXXXXX).p12"
cleanup() {
echo "==> Cleaning up..."
security delete-keychain "$KEYCHAIN_NAME" 2>/dev/null || true
rm -f "$CERT_FILE"
}
trap cleanup EXIT
# Decode certificate from base64
echo "$APPLE_CERTIFICATE_BASE64" | base64 --decode > "$CERT_FILE"
# Create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_NAME"
security set-keychain-settings -lut 900 "$KEYCHAIN_NAME"
security unlock-keychain -p "$KEYCHAIN_PASSWORD" "$KEYCHAIN_NAME"
# Import certificate into keychain
security import "$CERT_FILE" \
-k "$KEYCHAIN_NAME" \
-P "$APPLE_CERTIFICATE_PASSWORD" \
-T /usr/bin/codesign \
-T /usr/bin/security
# Allow codesign to access the keychain without UI prompt
security set-key-partition-list -S "apple-tool:,apple:,codesign:" \
-s -k "$KEYCHAIN_PASSWORD" "$KEYCHAIN_NAME"
# Add temporary keychain to the search list
security list-keychains -d user -s "$KEYCHAIN_NAME" $(security list-keychains -d user | tr -d '"')
echo "==> Keychain configured."
# ── Codesign the binary ───────────────────────────────────────────────
echo "==> Codesigning with identity: $APPLE_IDENTITY"
codesign --force --options runtime --sign "$APPLE_IDENTITY" \
--keychain "$KEYCHAIN_NAME" \
"$BINARY"
echo "==> Codesign complete. Verifying..."
codesign --verify --verbose "$BINARY"
# ── Notarize the binary ──────────────────────────────────────────────
echo "==> Preparing for notarization..."
ZIP_FILE="$(mktemp -t notarize.XXXXXX).zip"
trap 'rm -f "$ZIP_FILE"; cleanup' EXIT
# Create a ZIP for notarization submission
ditto -c -k --keepParent "$BINARY" "$ZIP_FILE"
echo "==> Submitting to Apple notarization service..."
xcrun notarytool submit "$ZIP_FILE" \
--apple-id "$APPLE_ID" \
--team-id "$APPLE_TEAM_ID" \
--password "$APPLE_APP_PASSWORD" \
--wait
echo "==> Notarization complete."
# Clean up ZIP
rm -f "$ZIP_FILE"
echo "==> ✓ Binary signed and notarized: $BINARY"