Skip to content

Commit c2e9c1a

Browse files
committed
Shares RxExample-iOS scheme.
1 parent c29e8f9 commit c2e9c1a

File tree

2 files changed

+100
-11
lines changed

2 files changed

+100
-11
lines changed
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0900"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "C83366DC1AD0293800C668A7"
18+
BuildableName = "RxExample-iOS.app"
19+
BlueprintName = "RxExample-iOS"
20+
ReferencedContainer = "container:RxExample.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
language = ""
30+
shouldUseLaunchSchemeArgsEnv = "YES">
31+
<Testables>
32+
</Testables>
33+
<MacroExpansion>
34+
<BuildableReference
35+
BuildableIdentifier = "primary"
36+
BlueprintIdentifier = "C83366DC1AD0293800C668A7"
37+
BuildableName = "RxExample-iOS.app"
38+
BlueprintName = "RxExample-iOS"
39+
ReferencedContainer = "container:RxExample.xcodeproj">
40+
</BuildableReference>
41+
</MacroExpansion>
42+
<AdditionalOptions>
43+
</AdditionalOptions>
44+
</TestAction>
45+
<LaunchAction
46+
buildConfiguration = "Debug"
47+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
48+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
49+
language = ""
50+
launchStyle = "0"
51+
useCustomWorkingDirectory = "NO"
52+
ignoresPersistentStateOnLaunch = "NO"
53+
debugDocumentVersioning = "YES"
54+
debugServiceExtension = "internal"
55+
allowLocationSimulation = "YES">
56+
<BuildableProductRunnable
57+
runnableDebuggingMode = "0">
58+
<BuildableReference
59+
BuildableIdentifier = "primary"
60+
BlueprintIdentifier = "C83366DC1AD0293800C668A7"
61+
BuildableName = "RxExample-iOS.app"
62+
BlueprintName = "RxExample-iOS"
63+
ReferencedContainer = "container:RxExample.xcodeproj">
64+
</BuildableReference>
65+
</BuildableProductRunnable>
66+
<AdditionalOptions>
67+
</AdditionalOptions>
68+
</LaunchAction>
69+
<ProfileAction
70+
buildConfiguration = "Release"
71+
shouldUseLaunchSchemeArgsEnv = "YES"
72+
savedToolIdentifier = ""
73+
useCustomWorkingDirectory = "NO"
74+
debugDocumentVersioning = "YES">
75+
<BuildableProductRunnable
76+
runnableDebuggingMode = "0">
77+
<BuildableReference
78+
BuildableIdentifier = "primary"
79+
BlueprintIdentifier = "C83366DC1AD0293800C668A7"
80+
BuildableName = "RxExample-iOS.app"
81+
BlueprintName = "RxExample-iOS"
82+
ReferencedContainer = "container:RxExample.xcodeproj">
83+
</BuildableReference>
84+
</BuildableProductRunnable>
85+
</ProfileAction>
86+
<AnalyzeAction
87+
buildConfiguration = "Debug">
88+
</AnalyzeAction>
89+
<ArchiveAction
90+
buildConfiguration = "Release"
91+
revealArchiveInOrganizer = "YES">
92+
</ArchiveAction>
93+
</Scheme>

scripts/all-tests.sh

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -163,17 +163,13 @@ if [ "${VALIDATE_IOS_EXAMPLE}" -eq 1 ]; then
163163
rx "RxExample-iOSTests" ${configuration} "${DEFAULT_IOS_SIMULATOR}" test
164164
done
165165
else
166-
echo "Ok for now";
167-
# Temporarily disabled because xcodebuild hangs on -showBuildSettings -skipUnavailableActions
168-
# and Carthage is calling xcodebuild with those commands
169-
#
170-
# for scheme in "RxExample-iOS"
171-
# do
172-
# for configuration in "Debug"
173-
# do
174-
# rx ${scheme} ${configuration} "${DEFAULT_IOS_SIMULATOR}" build
175-
# done
176-
# done
166+
for scheme in "RxExample-iOS"
167+
do
168+
for configuration in "Debug"
169+
do
170+
rx ${scheme} ${configuration} "${DEFAULT_IOS_SIMULATOR}" build
171+
done
172+
done
177173
fi
178174
elif [[ "${UNIX_NAME}" == "${LINUX}" ]]; then
179175
unsupported_target

0 commit comments

Comments
 (0)