Skip to content

Commit 0226125

Browse files
committed
quiet
1 parent 570c180 commit 0226125

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,41 +20,47 @@ xcodebuild:
2020
if test "$(PLATFORM)" = "iOS"; \
2121
then xcodebuild $(COMMAND) \
2222
-skipMacroValidation \
23+
-quiet \
2324
-configuration $(CONFIG) \
2425
-scheme ComposableArchitecture \
2526
-destination platform="$(PLATFORM_IOS)" \
2627
-derivedDataPath ~/.derivedData/$(CONFIG); \
2728
elif test "$(PLATFORM)" = "macOS"; \
2829
then xcodebuild $(COMMAND) \
2930
-skipMacroValidation \
31+
-quiet \
3032
-configuration $(CONFIG) \
3133
-scheme ComposableArchitecture \
3234
-destination platform="$(PLATFORM_MACOS)" \
3335
-derivedDataPath ~/.derivedData/$(CONFIG); \
3436
elif test "$(PLATFORM)" = "tvOS"; \
3537
then xcodebuild $(COMMAND) \
3638
-skipMacroValidation \
39+
-quiet \
3740
-configuration $(CONFIG) \
3841
-scheme ComposableArchitecture \
3942
-destination platform="$(PLATFORM_TVOS)" \
4043
-derivedDataPath ~/.derivedData/$(CONFIG); \
4144
elif test "$(PLATFORM)" = "watchOS"; \
4245
then xcodebuild $(COMMAND) \
4346
-skipMacroValidation \
47+
-quiet \
4448
-configuration $(CONFIG) \
4549
-scheme ComposableArchitecture \
4650
-destination platform="$(PLATFORM_WATCHOS)" \
4751
-derivedDataPath ~/.derivedData/$(CONFIG); \
4852
elif test "$(PLATFORM)" = "visionOS"; \
4953
then xcodebuild $(COMMAND) \
5054
-skipMacroValidation \
55+
-quiet \
5156
-configuration $(CONFIG) \
5257
-scheme ComposableArchitecture \
5358
-destination platform="$(PLATFORM_VISIONOS)" \
5459
-derivedDataPath ~/.derivedData/$(CONFIG); \
5560
elif test "$(PLATFORM)" = "macCatalyst"; \
5661
then xcodebuild $(COMMAND) \
5762
-skipMacroValidation \
63+
-quiet \
5864
-configuration $(CONFIG) \
5965
-scheme ComposableArchitecture \
6066
-destination platform="$(PLATFORM_MAC_CATALYST)" \
@@ -93,6 +99,7 @@ xcodebuild-example:
9399
test-integration:
94100
xcodebuild test \
95101
-skipMacroValidation \
102+
-quiet \
96103
-scheme "Integration" \
97104
-destination platform="$(PLATFORM_IOS)"
98105

0 commit comments

Comments
 (0)