RFC: Plugin Extension System — runtime intelligence, hosted MCP, and plugin ecosystem #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |