Function
createCleanArtifacts
(
params: CleanParams,
configuration: string,
platform: XcodePlatform,
)
Source from the content-addressed store, hash-verified
| 89 | }; |
| 90 | |
| 91 | function createCleanArtifacts( |
| 92 | params: CleanParams, |
| 93 | configuration: string, |
| 94 | platform: XcodePlatform, |
| 95 | ): CleanResult['artifacts'] { |
| 96 | return { |
| 97 | ...(params.workspacePath ? { workspacePath: params.workspacePath } : {}), |
| 98 | ...(params.scheme ? { scheme: params.scheme } : {}), |
| 99 | configuration, |
| 100 | platform: String(platform), |
| 101 | }; |
| 102 | } |
| 103 | |
| 104 | const STDERR_NOISE_PATTERNS: readonly RegExp[] = [ |
| 105 | /^\d{4}-\d{2}-\d{2}\s+\d{2}:\d{2}:\d{2}\.\d+\s+\S+\[\d+:\d+\]/u, |
Tested by
no test coverage detected