Skip to content

Disable upload_pr_documentation.yml #695

Disable upload_pr_documentation.yml

Disable upload_pr_documentation.yml #695

Workflow file for this run

name: Accelerate doc build
on: [pull_request]
jobs:
integration_doc_build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/setup-node@v3
with:
node-version: '20'
- uses: actions/checkout@v2
with:
repository: 'huggingface/doc-builder'
path: doc-builder
- uses: actions/checkout@v2
with:
repository: 'huggingface/accelerate'
path: accelerate
- name: Loading cache.
uses: actions/cache@v2
id: cache
with:
path: ~/.cache/pip
key: v1-test_build_doc
restore-keys: |
v1-test_build_doc-${{ hashFiles('setup.py') }}
v1-test_build_doc
- name: Setup environment
run: |
cd doc-builder
pip install .
cd ..
cd accelerate
pip install .[dev]
cd ..
- name: Make documentation
run: |
cd doc-builder &&
doc-builder build accelerate ../accelerate/docs/source --build_dir ../build_dir --clean --html &&
cd ..
env:
NODE_OPTIONS: --max-old-space-size=6656