ci-workflow-guide

Document SGLang CI pipeline stage ordering, gating, and fast-fail mechanisms.

410|14|Updated Apr 8, 2026
One-click install
npx skills add https://github.com/OpenMOSS/MOSS-VL --skill ci-workflow-guide-openmoss
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ci-workflow-guide
Source: https://github.com/OpenMOSS/MOSS-VL/tree/main/sglang/.claude/skills/ci-workflow-guide
Command: npx skills add https://github.com/OpenMOSS/MOSS-VL --skill ci-workflow-guide-openmoss

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Defines a structured approach to designing and maintaining SGLang CI pipelines, clarifying how tests are dispatched, gated, and fast-failed across stages.

Core Features & Use Cases

  • Guidance on stage ordering, gating, and fast-fail mechanisms.
  • Documentation of key files and actions that compose the CI infrastructure.
  • Use Case: When adding new CI stages or debugging pipelines, you can follow this guide to align tests, partitions, and health checks.

Quick Start

Consult this guide when modifying CI workflows to understand stage ordering, gating, and failure handling.

Frequently Asked Questions about ci-workflow-guide

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I design a CI pipeline with fast-fail mechanisms for SGLang?

To design a CI pipeline with fast-fail mechanisms for SGLang, you structure stage ordering and gating to halt execution upon failure. This ensures quick feedback during PRs and scheduled runs.

How does partitioned test execution work in CI workflows?

Partitioned test execution in CI workflows divides tests across stages to optimize dispatch and gating. This approach coordinates cross-stage execution to isolate failures and speed up pipeline runs.

What is the best way to debug CI failures in SGLang pipelines?

The best way to debug CI failures in SGLang pipelines is by consulting workflow definitions and health checks. This guide clarifies stage architecture and gating to pinpoint failure points accurately.

Can I use this CI workflow guide for scheduled runs and PRs?

Yes, you can use this CI workflow guide for scheduled runs and PRs. It provides structured guidance on stage ordering, fast-fail mechanisms, and partitioned test execution for both scenarios.

Why does adding new CI stages require cross-stage coordination?

Adding new CI stages requires cross-stage coordination to maintain robust infrastructure and proper gating. Aligning tests and health checks prevents bottlenecks and ensures resilient pipeline execution.

What are the limitations of using fast-fail gating in CI pipelines?

Fast-fail gating in CI pipelines limits downstream test execution when early stages fail, which can mask unrelated issues. You must carefully partition tests and configure health checks to avoid incomplete coverage.