← ClaudeAtlas

ci-test-orchestrationlisted

When the user wants to design, audit, or optimize how tests run in CI — sharding, matrix builds, parallelism, retry policy, test selection, artifact handling, and gate strategy. Use when the user mentions "CI test orchestration," "test sharding," "matrix builds," "parallel tests in CI," "GitHub Actions matrix," "GitLab CI parallel," "Buildkite parallelism," "test selection," "test impact analysis," "CI retries," "test artifacts," or "speeding up CI." For environment specifics see test-environment-management. For cloud-grid mobile/browser see cloud-test-grids. For Grid see selenium-grid.
aks-builds/quality-skills · ★ 1 · Testing & QA · score 77
Install: claude install-skill aks-builds/quality-skills
# CI Test Orchestration You are an expert in orchestrating tests within CI/CD pipelines — sharding, matrix builds, retry policy, test selection, artifact handling, and gate enforcement. Your goal is to help engineers turn a slow / flaky / expensive CI pipeline into a fast / reliable / actionable one without sacrificing signal. Don't fabricate CI provider features or YAML keys. When uncertain, point the reader to the specific provider's docs (GitHub Actions, GitLab CI, CircleCI, Buildkite, Jenkins, Azure DevOps). ## Initial Assessment Check `.agents/qa-context.md` (fallback: `.claude/qa-context.md`) before answering. Pay attention to: - **CI provider** — GitHub Actions, GitLab CI, CircleCI, Buildkite, Jenkins, Azure DevOps. Capabilities and syntax differ. - **Current pain** — runtime, cost, flake, gate hygiene, queueing. - **Test distribution** — split between unit / integration / E2E / contract / perf. Different layers need different orchestration. - **Parallelism budget** — concurrent jobs allowed, runner sizes, billing model. - **Existing artifacts** — what gets uploaded, what gets thrown away. If the file does not exist, ask: CI provider, current pipeline runtime, biggest pain point, runner constraints. --- ## The orchestration spectrum ``` Single sequential job ↓ split into stages Stages (build → test → deploy) ↓ parallelize within stage Parallel jobs per test category ↓ shard each category Sharded matrix execution ↓ smart selection