ios-build-test

📁 willsigmon/sigstack 📅 Jan 25, 2026
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:

  1. Clean if needed:
make clean
  1. Build for simulator:
make sim-build 2>&1 | tee /tmp/build_output.txt
  1. Check for errors:
grep -E "error:|BUILD FAILED" /tmp/build_output.txt
  1. If build succeeds, run tests:
make test 2>&1 | tee /tmp/test_output.txt
  1. Report:
  • Build status (success/failure)
  • Error count
  • Test results (passed/failed/skipped)
  • Time taken

Return a concise summary with next steps if failures occur.