We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 657f995 commit 28745ddCopy full SHA for 28745dd
build.swift
@@ -73,6 +73,20 @@ func buildTask(args: [String] = []) -> Process {
73
return task
74
}
75
76
+let test = buildTask(args: [
77
+ "-workspace", "FirebaseUI.xcworkspace",
78
+ "-scheme", "FirebaseUI",
79
+ "-sdk", "iphonesimulator",
80
+ "-destination", "platform=iOS Simulator,name=iPhone 7",
81
+ "test",
82
+ "ONLY_ACTIVE_ARCH=YES", "CODE_SIGNING_REQUIRED=NO"
83
+])
84
+test.launch()
85
+test.waitUntilExit()
86
+guard test.terminationStatus == 0 else {
87
+ exit(test.terminationStatus)
88
+}
89
+
90
/// A value type representing an xcodebuild call.
91
/// param keys are parameters and expect leading dashes,
92
/// i.e. `-workspace`
0 commit comments