Skip to content

Commit

Permalink
chore: use xcpretty on build-examples make target
Browse files Browse the repository at this point in the history
  • Loading branch information
grdsdev committed Mar 28, 2024
1 parent d3f3921 commit 392555a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ PLATFORM_MACOS = macOS
PLATFORM_MAC_CATALYST = macOS,variant=Mac Catalyst
PLATFORM_TVOS = tvOS Simulator,name=Apple TV
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 9 (41mm)
EXAMPLE = Examples

test-all: test-library test-linux

Expand Down Expand Up @@ -45,11 +44,12 @@ test-docs:

build-examples:
for scheme in Examples UserManagement SlackClone; do \
xcodebuild build \
-skipMacroValidation \
-workspace supabase-swift.xcworkspace \
-scheme "$$scheme" \
-destination platform="$(PLATFORM_IOS)" || exit 1; \
set -o pipefail && \
xcodebuild build \
-skipMacroValidation \
-workspace supabase-swift.xcworkspace \
-scheme "$$scheme" \
-destination platform="$(PLATFORM_IOS)" | xcpretty; \
done

format:
Expand Down

0 comments on commit 392555a

Please sign in to comment.