181 lines
8.1 KiB
Makefile
181 lines
8.1 KiB
Makefile
# Nucleic build channels.
|
|
#
|
|
# Each target sets NUCLEIC_CHANNEL, which Package.swift reads to pick the app
|
|
# executable's product (== process) name and the compile-time channel define that
|
|
# drives BuildChannel / the warning banner:
|
|
#
|
|
# channel process name banner built from how
|
|
# ------- --------------- ---------------------- ----------- ----------------
|
|
# dev nucleic-local red "Local Build" dev make dev / run
|
|
# canary nucleic-canary yellow "Canary" canary make canary
|
|
# beta nucleic-beta blue "Beta" staging make beta
|
|
# rc nucleic-rc gold "Release Candidate" rc make rc
|
|
# stable nucleic none main make stable
|
|
#
|
|
# Build system: the default (SwiftBuild) backend. This repo used to force
|
|
# `--build-system native` to dodge SwiftBuild's in-build codesign, which rejected the
|
|
# `com.apple.provenance` xattrs iCloud stamped on files ("resource fork, Finder
|
|
# information, or similar detritus"). The repo no longer lives in iCloud, so the root
|
|
# cause is gone and `native` — now deprecated in SwiftPM — is no longer needed. Override
|
|
# if ever necessary, e.g. `make dev BUILDSYS='--build-system native'`.
|
|
# dev is a debug build; canary/beta/rc/stable are release-optimized.
|
|
|
|
BUILDSYS :=
|
|
|
|
# TailscaleKit (the embedded tsnet node behind the Tailnet sync transport) has no SwiftPM
|
|
# distribution — scripts/build-tailscalekit.sh builds it from a pinned libtailscale commit into
|
|
# third_party/TailscaleKit/ (untracked, ~100 MB, needs Go + Xcode). Package.swift declares the
|
|
# binary target only when the xcframework exists; without it the app builds but reports "not
|
|
# built in" from the Settings transport picker. Treat it as a build prerequisite so every
|
|
# channel links Tailscale support; the file target means it's built once and skipped thereafter.
|
|
TAILSCALE_XCFRAMEWORK := third_party/TailscaleKit/TailscaleKit.xcframework
|
|
|
|
$(TAILSCALE_XCFRAMEWORK): scripts/build-tailscalekit.sh
|
|
./scripts/build-tailscalekit.sh
|
|
|
|
.PHONY: dev run canary beta rc stable test clean tailscalekit app-dev app-canary app-beta app-rc app-stable apps \
|
|
dmg-canary dmg-beta dmg-rc dmg-stable release-canary release-beta release-rc release-stable \
|
|
ios-release ios-release-beta ios-release-canary \
|
|
sync-versions edge-deps edge-build edge-test edge-deploy
|
|
|
|
## tailscalekit: build the vendored TailscaleKit.xcframework (Tailnet sync transport)
|
|
tailscalekit: $(TAILSCALE_XCFRAMEWORK)
|
|
|
|
## dev: build the dev channel (process: nucleic-local)
|
|
dev: $(TAILSCALE_XCFRAMEWORK)
|
|
NUCLEIC_CHANNEL=dev swift build $(BUILDSYS) --product nucleic-local
|
|
|
|
## run: build + launch the dev channel
|
|
run: $(TAILSCALE_XCFRAMEWORK)
|
|
NUCLEIC_CHANNEL=dev swift run $(BUILDSYS) nucleic-local
|
|
|
|
## canary: build the canary channel, release-optimized (process: nucleic-canary)
|
|
canary: $(TAILSCALE_XCFRAMEWORK)
|
|
NUCLEIC_CHANNEL=canary swift build -c release $(BUILDSYS) --product nucleic-canary
|
|
|
|
## beta: build the beta channel, release-optimized (process: nucleic-beta)
|
|
beta: $(TAILSCALE_XCFRAMEWORK)
|
|
NUCLEIC_CHANNEL=beta swift build -c release $(BUILDSYS) --product nucleic-beta
|
|
|
|
## rc: build the release-candidate channel, release-optimized (process: nucleic-rc)
|
|
rc: $(TAILSCALE_XCFRAMEWORK)
|
|
NUCLEIC_CHANNEL=rc swift build -c release $(BUILDSYS) --product nucleic-rc
|
|
|
|
## stable: build the stable/prod channel, release-optimized (process: nucleic)
|
|
stable: $(TAILSCALE_XCFRAMEWORK)
|
|
NUCLEIC_CHANNEL=stable swift build -c release $(BUILDSYS) --product nucleic
|
|
|
|
## app-dev: package the dev channel as dist/Nucleic Dev.app
|
|
app-dev: $(TAILSCALE_XCFRAMEWORK)
|
|
./scripts/package-app.sh dev
|
|
|
|
## app-canary: package the canary channel as dist/Nucleic Canary.app
|
|
app-canary: $(TAILSCALE_XCFRAMEWORK)
|
|
./scripts/package-app.sh canary
|
|
|
|
## app-beta: package the beta channel as dist/Nucleic Beta.app
|
|
app-beta: $(TAILSCALE_XCFRAMEWORK)
|
|
./scripts/package-app.sh beta
|
|
|
|
## app-rc: package the release-candidate channel as dist/Nucleic RC.app
|
|
app-rc: $(TAILSCALE_XCFRAMEWORK)
|
|
./scripts/package-app.sh rc
|
|
|
|
## app-stable: package the stable channel as dist/Nucleic.app
|
|
app-stable: $(TAILSCALE_XCFRAMEWORK)
|
|
./scripts/package-app.sh stable
|
|
|
|
## apps: package all channels
|
|
apps: app-dev app-canary app-beta app-rc app-stable
|
|
|
|
## dmg-canary: build a signed DMG from dist/Nucleic Canary.app (run app-canary first)
|
|
dmg-canary:
|
|
./scripts/make-dmg.sh canary
|
|
|
|
## dmg-beta: build a signed DMG from dist/Nucleic Beta.app (run app-beta first)
|
|
dmg-beta:
|
|
./scripts/make-dmg.sh beta
|
|
|
|
## dmg-rc: build a signed DMG from dist/Nucleic RC.app (run app-rc first)
|
|
dmg-rc:
|
|
./scripts/make-dmg.sh rc
|
|
|
|
## dmg-stable: build a signed DMG from dist/Nucleic.app (run app-stable first)
|
|
dmg-stable:
|
|
./scripts/make-dmg.sh stable
|
|
|
|
# Releases bump ./VERSION: build number always +1, plus a semver bump via BUMP. Default is minor,
|
|
# except the fast-moving canary/dev channels which default to build-only (no marketing-version
|
|
# change). BUMP overrides either.
|
|
# make release-beta # 0.1.0 (827) -> 0.2.0 (828): minor (the default)
|
|
# make release-canary # 0.1.0 (827) -> 0.1.0 (828): build-only (canary's default)
|
|
# make release-beta BUMP=major # -> 1.0.0 (828)
|
|
# make release-beta BUMP=patch # -> 0.1.1 (828)
|
|
# make release-canary BUMP=patch # -> 0.1.1 (828): override canary's build-only default
|
|
# make release-beta BUMP=build # -> 0.1.0 (828): build number only
|
|
|
|
## release-canary: signed + notarized + stapled DMG release (canary channel). BUMP=major|minor|patch|build (default: build)
|
|
release-canary:
|
|
NUCLEIC_BUMP=$(BUMP) ./scripts/release-macos.sh canary
|
|
|
|
## release-beta: signed + notarized + stapled DMG release (beta channel). BUMP=major|minor|patch
|
|
release-beta:
|
|
NUCLEIC_BUMP=$(BUMP) ./scripts/release-macos.sh beta
|
|
|
|
## release-rc: signed + notarized + stapled DMG release (rc channel). BUMP=major|minor|patch
|
|
release-rc:
|
|
NUCLEIC_BUMP=$(BUMP) ./scripts/release-macos.sh rc
|
|
|
|
## release-stable: signed + notarized + stapled DMG release (stable channel). BUMP=major|minor|patch
|
|
release-stable:
|
|
NUCLEIC_BUMP=$(BUMP) ./scripts/release-macos.sh stable
|
|
|
|
## sync-versions: fast-forward each less-stable channel branch's VERSION up to its more-stable upstream (dry-run; APPLY=1 to write). Also runs automatically after a release.
|
|
sync-versions:
|
|
./scripts/sync-version.sh $(if $(APPLY),--apply)
|
|
|
|
## ios-release-beta: archive + upload the public beta iPhone app to TestFlight (bundle ...remote.beta, beta icon — separate from stable). BUMP=major|minor|patch|build (default: minor). Versions ios/VERSION (starts at 0.1.0).
|
|
ios-release-beta:
|
|
NUCLEIC_BUMP=$(BUMP) ./scripts/ios-release.sh beta
|
|
|
|
## ios-release-canary: archive + upload the canary iPhone app to TestFlight (bundle ...remote.canary, canary icon). BUMP=major|minor|patch|build (default: build). Shares ios/VERSION with beta.
|
|
ios-release-canary:
|
|
NUCLEIC_BUMP=$(BUMP) ./scripts/ios-release.sh canary
|
|
|
|
## ios-release: alias for ios-release-beta (the public TestFlight build)
|
|
ios-release: ios-release-beta
|
|
|
|
## test: run the test suite
|
|
test:
|
|
swift test $(BUILDSYS)
|
|
|
|
## clean: remove build products
|
|
clean:
|
|
swift package clean
|
|
|
|
# --- nucleic-edge cloud service (Cloudflare Worker; cloud/nucleic-edge) -------
|
|
# Build = typecheck + bundle via wrangler's dry-run (no upload, no auth).
|
|
# Deploy = `wrangler deploy` (needs Cloudflare auth; see cloud/nucleic-edge/README.md).
|
|
# The Worker's npm deps install on demand whenever package*.json changes.
|
|
|
|
EDGE_DIR := cloud/nucleic-edge
|
|
|
|
$(EDGE_DIR)/node_modules: $(EDGE_DIR)/package.json $(EDGE_DIR)/package-lock.json
|
|
cd $(EDGE_DIR) && npm install
|
|
@touch $@
|
|
|
|
## edge-deps: install the nucleic-edge Worker's npm dependencies
|
|
edge-deps: $(EDGE_DIR)/node_modules
|
|
|
|
## edge-build: typecheck + bundle the Worker without uploading (wrangler dry-run)
|
|
edge-build: $(EDGE_DIR)/node_modules
|
|
cd $(EDGE_DIR) && npm run typecheck && npm run check
|
|
|
|
## edge-test: run the nucleic-edge Worker unit tests
|
|
edge-test: $(EDGE_DIR)/node_modules
|
|
cd $(EDGE_DIR) && npm test
|
|
|
|
## edge-deploy: build, then deploy the Worker to Cloudflare (wrangler deploy)
|
|
edge-deploy: edge-build
|
|
cd $(EDGE_DIR) && npm run deploy
|