ios-build-test
2
总安装量
2
周安装量
#74826
全站排名
安装命令
npx skills add https://github.com/willsigmon/sigstack --skill ios-build-test
Agent 安装分布
opencode
2
codex
2
claude-code
2
antigravity
2
gemini-cli
2
windsurf
1
Skill 文档
iOS Build & Test Workflow
Execute a fast build and test cycle for the Leavn iOS app:
- Clean if needed:
make clean
- Build for simulator:
make sim-build 2>&1 | tee /tmp/build_output.txt
- Check for errors:
grep -E "error:|BUILD FAILED" /tmp/build_output.txt
- If build succeeds, run tests:
make test 2>&1 | tee /tmp/test_output.txt
- Report:
- Build status (success/failure)
- Error count
- Test results (passed/failed/skipped)
- Time taken
Return a concise summary with next steps if failures occur.