Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw committed Sep 11, 2024
1 parent 0226125 commit d328f2b
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ComposableArchitecture.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,9 @@
<TestPlanReference
reference = "container:Examples/SpeechRecognition.xctestplan">
</TestPlanReference>
<TestPlanReference
reference = "container:Examples/ComposableArchitecture.xctestplan">
</TestPlanReference>
</TestPlans>
</TestAction>
<LaunchAction
Expand Down
31 changes: 31 additions & 0 deletions Examples/ComposableArchitecture.xctestplan
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"configurations" : [
{
"id" : "76960491-A7C8-45E5-9007-E9317BA42F45",
"name" : "Configuration 1",
"options" : {

}
}
],
"defaultOptions" : {

},
"testTargets" : [
{
"target" : {
"containerPath" : "container:",
"identifier" : "ComposableArchitectureMacrosTests",
"name" : "ComposableArchitectureMacrosTests"
}
},
{
"target" : {
"containerPath" : "container:",
"identifier" : "ComposableArchitectureTests",
"name" : "ComposableArchitectureTests"
}
}
],
"version" : 1
}
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
COMMAND =
CONFIG = debug
PLATFORM = iOS
PLATFORM_IOS = iOS Simulator,id=$(call udid_for,iOS 17.5,iPhone \d\+ Pro [^M])
PLATFORM_IOS = iOS Simulator,id=$(call udid_for,iOS,iPhone \d\+ Pro [^M])
PLATFORM_MACOS = macOS
PLATFORM_MAC_CATALYST = macOS,variant=Mac Catalyst
PLATFORM_TVOS = tvOS Simulator,id=$(call udid_for,tvOS 17.5,TV)
PLATFORM_VISIONOS = visionOS Simulator,id=$(call udid_for,visionOS 1.2,Vision)
PLATFORM_WATCHOS = watchOS Simulator,id=$(call udid_for,watchOS 10.5,Watch)
PLATFORM_TVOS = tvOS Simulator,id=$(call udid_for,tvOS,TV)
PLATFORM_VISIONOS = visionOS Simulator,id=$(call udid_for,visionOS,Vision)
PLATFORM_WATCHOS = watchOS Simulator,id=$(call udid_for,watchOS,Watch)

TEST_RUNNER_CI = $(CI)

Expand Down Expand Up @@ -91,6 +91,8 @@ test-docs:
xcodebuild-example:
xcodebuild $(COMMAND) \
-skipMacroValidation \
-quiet \
-configuration $(CONFIG) \
-scheme "$(SCHEME)" \
-destination platform="$(PLATFORM_IOS)" \
-derivedDataPath ~/.derivedData/"$(SCHEME)" \
Expand Down

0 comments on commit d328f2b

Please sign in to comment.