# Build Test

> Build the MPADAO project and run tests, reporting results concisely

- Skill: `stillwater-sc/build-test` (Agent Skill)
- Install (CLI): `npx skillmds@latest add stillwater-sc/build-test`
- Raw SKILL.md: https://api.skillmd.com/api/skills/stillwater-sc/build-test/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: stillwater-sc (https://skillmd.com/u/stillwater-sc)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/stillwater-sc/build-test

---


Build and test the MPADAO project:

1. Configure: cd build && cmake .. 2>&1 | tail -5
2. Build: make -j$(nproc) 2>&1
3. Test: ctest --output-on-failure 2>&1
4. Report:
   - Which targets built successfully
   - Any compiler warnings (summarize, don't dump full output)
   - Which tests passed/failed
   - If any test failed, show the relevant failure output

