Some checks are pending
build-and-push / image (push) Waiting to run
- Package.swift: add CxARA (via CxLLM-SDK) and CxDrive (via new CxLLM-Drive package dep) so the native shell links every mac-app-shaped module exported by the CxLLM-SDK and CxLLM-Drive families. - Sidebar: surface .repair (CxARA) and .drive (CxDrive) alongside the existing Web/Chat/Agent/MCP/Models/Code/AWS/Git/LangBridge/Telemetry tabs, with matching SF Symbols. - scripts/build-mac-bundle.sh: end-to-end pipeline (release build, .app bundle with rebranded Info.plist studio.cxai.ade 1.2.0, ad-hoc codesign, tar.gz, hdiutil UDZO dmg, publish to share/cxai-mac, write build-info.json with sha256/sizes/modules/git sha). - Makefile targets: swift-app 'make rebuild-mac', CxWebApp root 'make rebuild-mac'. - share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- dge- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Tauri 0- share/AR- share/cxai-mac: replace Tauri 0- share/cxai-mac: replace Ter refere- share/cxai-mac: replace Tauri 0- origin main 2>&1 | tail -5
31 lines
677 B
Makefile
31 lines
677 B
Makefile
.PHONY: help build run test app rebuild-mac clean
|
|
|
|
CONFIG ?= release
|
|
VERSION ?= 1.2.0
|
|
|
|
help:
|
|
@echo "make build # swift build -c $(CONFIG)"
|
|
@echo "make run # swift run -c $(CONFIG) CxWebAppMac"
|
|
@echo "make test # swift test"
|
|
@echo "make app # bundle into build/CxWebAppMac.app"
|
|
@echo "make rebuild-mac # build + .app + .tar.gz + .dmg + share/cxai-mac/build-info.json (VERSION=$(VERSION))"
|
|
@echo "make clean"
|
|
|
|
build:
|
|
swift build -c $(CONFIG)
|
|
|
|
run:
|
|
swift run -c $(CONFIG) CxWebAppMac
|
|
|
|
test:
|
|
swift test
|
|
|
|
app:
|
|
bash scripts/build-app.sh
|
|
|
|
rebuild-mac:
|
|
VERSION=$(VERSION) bash scripts/build-mac-bundle.sh
|
|
|
|
clean:
|
|
rm -rf .build build
|