MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / formatBuildRunStepLabel

Function formatBuildRunStepLabel

src/utils/xcodebuild-output.ts:11–28  ·  view source on GitHub ↗
(step: string)

Source from the content-addressed store, hash-verified

9}
10
11function formatBuildRunStepLabel(step: string): string {
12 switch (step) {
13 case 'resolve-app-path':
14 return 'Resolving app path';
15 case 'resolve-simulator':
16 return 'Resolving simulator';
17 case 'boot-simulator':
18 return 'Booting simulator';
19 case 'install-app':
20 return 'Installing app';
21 case 'extract-bundle-id':
22 return 'Extracting bundle ID';
23 case 'launch-app':
24 return 'Launching app';
25 default:
26 return 'Running step';
27 }
28}
29
30export function createNoticeFragment(
31 _operation: XcodebuildOperation,

Callers 1

createNoticeFragmentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected