(session: RenderSession)
| 174 | } |
| 175 | |
| 176 | function isStructuredXcodebuildFailureSession(session: RenderSession): boolean { |
| 177 | const structuredOutput = session.getStructuredOutput?.(); |
| 178 | if (!structuredOutput?.result.didError) { |
| 179 | return false; |
| 180 | } |
| 181 | |
| 182 | return ( |
| 183 | structuredOutput.result.kind === 'build-result' || |
| 184 | structuredOutput.result.kind === 'build-run-result' || |
| 185 | structuredOutput.result.kind === 'test-result' |
| 186 | ); |
| 187 | } |
| 188 | |
| 189 | function buildEffectiveNextStepParams( |
| 190 | nextStepParams: NextStepParamsMap | undefined, |
no test coverage detected