@@ -20,41 +20,47 @@ xcodebuild:
20
20
if test " $( PLATFORM) " = " iOS" ; \
21
21
then xcodebuild $(COMMAND ) \
22
22
-skipMacroValidation \
23
+ -quiet \
23
24
-configuration $(CONFIG ) \
24
25
-scheme ComposableArchitecture \
25
26
-destination platform=" $( PLATFORM_IOS) " \
26
27
-derivedDataPath ~ /.derivedData/$(CONFIG ) ; \
27
28
elif test " $( PLATFORM) " = " macOS" ; \
28
29
then xcodebuild $(COMMAND ) \
29
30
-skipMacroValidation \
31
+ -quiet \
30
32
-configuration $(CONFIG ) \
31
33
-scheme ComposableArchitecture \
32
34
-destination platform=" $( PLATFORM_MACOS) " \
33
35
-derivedDataPath ~ /.derivedData/$(CONFIG ) ; \
34
36
elif test " $( PLATFORM) " = " tvOS" ; \
35
37
then xcodebuild $(COMMAND ) \
36
38
-skipMacroValidation \
39
+ -quiet \
37
40
-configuration $(CONFIG ) \
38
41
-scheme ComposableArchitecture \
39
42
-destination platform=" $( PLATFORM_TVOS) " \
40
43
-derivedDataPath ~ /.derivedData/$(CONFIG ) ; \
41
44
elif test " $( PLATFORM) " = " watchOS" ; \
42
45
then xcodebuild $(COMMAND ) \
43
46
-skipMacroValidation \
47
+ -quiet \
44
48
-configuration $(CONFIG ) \
45
49
-scheme ComposableArchitecture \
46
50
-destination platform=" $( PLATFORM_WATCHOS) " \
47
51
-derivedDataPath ~ /.derivedData/$(CONFIG ) ; \
48
52
elif test " $( PLATFORM) " = " visionOS" ; \
49
53
then xcodebuild $(COMMAND ) \
50
54
-skipMacroValidation \
55
+ -quiet \
51
56
-configuration $(CONFIG ) \
52
57
-scheme ComposableArchitecture \
53
58
-destination platform=" $( PLATFORM_VISIONOS) " \
54
59
-derivedDataPath ~ /.derivedData/$(CONFIG ) ; \
55
60
elif test " $( PLATFORM) " = " macCatalyst" ; \
56
61
then xcodebuild $(COMMAND ) \
57
62
-skipMacroValidation \
63
+ -quiet \
58
64
-configuration $(CONFIG ) \
59
65
-scheme ComposableArchitecture \
60
66
-destination platform=" $( PLATFORM_MAC_CATALYST) " \
@@ -93,6 +99,7 @@ xcodebuild-example:
93
99
test-integration :
94
100
xcodebuild test \
95
101
-skipMacroValidation \
102
+ -quiet \
96
103
-scheme " Integration" \
97
104
-destination platform=" $( PLATFORM_IOS) "
98
105
0 commit comments