Skip to content

RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem #4

RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem

RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem #4

Workflow file for this run

name: macOS CI
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install system deps
continue-on-error: true
run: |
brew update
brew install ripgrep
- name: Install CodeGraphContext
run: |
pip install -e .
- name: Debug info
run: |
uname -a
python --version
which python
df -h
- name: Run index (verbose)
continue-on-error: true
run: |
cgc index -f --debug
- name: Try find
continue-on-error: true
run: |
cgc find content "def" --debug
- name: Upload logs
if: always()
uses: actions/upload-artifact@v4
with:
name: macos-logs
path: |
~/.codegraphcontext
*.log