native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix CI build pipefail and disable signing for tests

khoi 2be0e54f 546f1500

+2 -2
+2 -2
Makefile
··· 39 39 rsync -a --delete "$$src/" "$$dst/" 40 40 41 41 build-app: build-ghostty-xcframework # Build the macOS app (Debug) 42 - xcodebuild -project supacode.xcodeproj -scheme supacode -configuration Debug build 2>&1 | mise exec -- xcsift -qw 42 + bash -o pipefail -c 'xcodebuild -project supacode.xcodeproj -scheme supacode -configuration Debug build CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" 2>&1 | mise exec -- xcsift -qw' 43 43 44 44 run-app: build-app # Build then launch (Debug) with log streaming 45 45 @settings="$$(xcodebuild -project supacode.xcodeproj -scheme supacode -configuration Debug -showBuildSettings -json 2>/dev/null)"; \ ··· 52 52 mise exec -- swiftlint --quiet 53 53 54 54 test: build-ghostty-xcframework 55 - xcodebuild test -project supacode.xcodeproj -scheme supacode -destination "platform=macOS" 2>&1 | mise exec -- xcsift -qw 55 + bash -o pipefail -c 'xcodebuild test -project supacode.xcodeproj -scheme supacode -destination "platform=macOS" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" 2>&1 | mise exec -- xcsift -qw' 56 56 57 57 format: # Swift format 58 58 swift-format -p --in-place --recursive --configuration ./.swift-format.json supacode supacodeTests