Files
cs249r_book/.github/workflows/mlsysim-validate-dev.yml
T
Vijay Janapa Reddi c874a7c69b fix(ci): bump MLSYSIM CI to Python 3.12 (circular import fixed in 3.12+)
Python 3.11's import machinery re-enters partially-initialized
parent packages during relative imports, causing an unavoidable
circular import with the datasets subpackage. Python 3.12+ (PEP 690)
handles this correctly. Reverted registry.py to clean relative imports.
2026-05-27 00:22:17 -04:00

143 lines
4.9 KiB
YAML

name: '🧮 MLSYSIM · ✅ Validate (Dev)'
# =============================================================================
# MLSYSIM — Test & Build Validation
# =============================================================================
#
# Runs the mlsysim test suite and builds the Quarto docs site to validate
# changes before merge.
#
# Flow:
# 1. TEST — pytest on mlsysim/tests/
# 2. BUILD_SITE — Quarto HTML render of docs site
#
# Triggers:
# - push: dev branch, mlsysim/** paths
# - pull_request: mlsysim/** paths
# - workflow_dispatch: manual
#
# Deploys to: N/A (validate only)
# Vars: MLSYSIM_DOCS
#
# Related:
# - mlsysim-preview-dev.yml — Dev preview deploy
# - mlsysim-publish-live.yml — Production deploy
# - mlsysim-build-pdfs.yml — Reusable PDF build
#
# =============================================================================
on:
workflow_dispatch:
# Reusable: mlsysim-preview-dev.yml calls this via `uses:` so the deploy
# job can `needs:` a green validate. Standalone push/PR triggers stay
# so the publish guard and README badge still see direct runs on dev.
workflow_call:
pull_request:
paths:
- 'mlsysim/**'
push:
branches: [dev]
paths:
- 'mlsysim/**'
permissions:
contents: read
concurrency:
# `head_ref || run_id` keeps PR cancel-on-amend behavior while making
# push and workflow_call runs unique per-run, so a push to dev that
# triggers both this workflow standalone AND Preview's `uses:` call
# doesn't collide on a shared group. See staffml-validate-dev.yml.
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
# Workflow-level environment. Defined here rather than as a repository variable
# because repository variables are not exposed to workflows triggered by
# pull_request events from forks (GitHub security default). Workflow-level
# env vars are available in all contexts.
env:
MLSYSIM_DOCS: mlsysim/docs
jobs:
test:
name: '🧪 Run Tests'
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v6
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
# The test suite exercises mlsysim/viz/plots.py via test_evaluation_contract,
# which requires matplotlib. matplotlib lives in the [viz] extra (not [dev])
# because it's a runtime dep for plot generation, not a pure test dep —
# but the contract tests cross both, so install both extras for CI.
- name: 🐍 Install dependencies
working-directory: mlsysim
run: pip install ".[dev,viz]"
- name: 🧪 Run tests
working-directory: mlsysim
run: pytest tests/ -v --tb=short
build-site:
name: '🔨 Build Docs Site'
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@v6
- name: 🐍 Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: 🔧 Setup Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: 🐍 Install dependencies
working-directory: mlsysim
run: pip install ".[docs]"
- name: 🔨 Build MLSYSIM Site
working-directory: ${{ env.MLSYSIM_DOCS }}
run: quarto render
- name: 🔍 Validate build output
run: |
MLSYSIM_DOCS="${{ env.MLSYSIM_DOCS }}"
echo "🔎 Resolved MLSYSIM_DOCS: '${MLSYSIM_DOCS}'"
if [ -z "${MLSYSIM_DOCS}" ]; then
echo "❌ FATAL: MLSYSIM_DOCS resolved to empty string."
echo " If this is a fork PR, check that MLSYSIM_DOCS is declared in the workflow-level env: block."
echo " Repository variables are not available on fork PR triggers."
exit 1
fi
if [ ! -f "${MLSYSIM_DOCS}/_build/index.html" ]; then
echo "❌ CRITICAL: ${MLSYSIM_DOCS}/_build/index.html missing from build output."
echo " Quarto render may have exited nonzero. Check the build step above."
exit 1
fi
echo "✅ Site built successfully"
echo "📊 Build size: $(du -sh ${MLSYSIM_DOCS}/_build | cut -f1)"
# ===========================================================================
# Stage 3: Link integrity (Tier 2 — non-blocking baseline)
# ===========================================================================
# Tier 1 pre-commit (shared/scripts/check-internal-links.py) already blocks
# broken internal links + anchors. This pass adds external reachability as a
# warning. Flip fail_on_broken=true once the baseline is clean.
check-links:
name: '🔗 Check Links'
uses: ./.github/workflows/infra-link-check.yml
with:
path_pattern: './mlsysim/docs/**/*.qmd'
lycheeignore_path: 'shared/config/.lycheeignore'
fail_on_broken: false
max_concurrency: 8