Skip to content

Commit

Permalink
quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw committed Sep 11, 2024
1 parent 570c180 commit 0226125
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,41 +20,47 @@ xcodebuild:
if test "$(PLATFORM)" = "iOS"; \
then xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme ComposableArchitecture \
-destination platform="$(PLATFORM_IOS)" \
-derivedDataPath ~/.derivedData/$(CONFIG); \
elif test "$(PLATFORM)" = "macOS"; \
then xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme ComposableArchitecture \
-destination platform="$(PLATFORM_MACOS)" \
-derivedDataPath ~/.derivedData/$(CONFIG); \
elif test "$(PLATFORM)" = "tvOS"; \
then xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme ComposableArchitecture \
-destination platform="$(PLATFORM_TVOS)" \
-derivedDataPath ~/.derivedData/$(CONFIG); \
elif test "$(PLATFORM)" = "watchOS"; \
then xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme ComposableArchitecture \
-destination platform="$(PLATFORM_WATCHOS)" \
-derivedDataPath ~/.derivedData/$(CONFIG); \
elif test "$(PLATFORM)" = "visionOS"; \
then xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme ComposableArchitecture \
-destination platform="$(PLATFORM_VISIONOS)" \
-derivedDataPath ~/.derivedData/$(CONFIG); \
elif test "$(PLATFORM)" = "macCatalyst"; \
then xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme ComposableArchitecture \
-destination platform="$(PLATFORM_MAC_CATALYST)" \
Expand Down Expand Up @@ -93,6 +99,7 @@ xcodebuild-example:
test-integration:
xcodebuild test \
-skipMacroValidation \
-quiet \
-scheme "Integration" \
-destination platform="$(PLATFORM_IOS)"

Expand Down

0 comments on commit 0226125

Please sign in to comment.