Revert "Use an env var SGLANG_SET_CPU_AFFINITY to set cpu affinity; turn it off by default" #1091
Workflow file for this run
This file contains 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: Execute Notebooks | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "python/sglang/**" | |
- "docs/**" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "python/sglang/**" | |
- "docs/**" | |
workflow_dispatch: | |
concurrency: | |
group: execute-notebook-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-all-notebooks: | |
runs-on: 1-gpu-runner | |
if: github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
bash scripts/ci_install_dependency.sh | |
pip install -r docs/requirements.txt | |
- name: Setup Jupyter Kernel | |
run: | | |
python -m ipykernel install --user --name python3 --display-name "Python 3" | |
- name: Execute notebooks | |
timeout-minutes: 30 | |
run: | | |
cd docs | |
make clean | |
make compile |