forked from numpy/numpy-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
34 lines (28 loc) · 765 Bytes
/
config.yml
File metadata and controls
34 lines (28 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
version: 2.1
jobs:
build-docs:
docker:
- image: cimg/python:3.13-node
steps:
- checkout
- run:
name: Install Python dependencies
command: |
python -m pip install --upgrade pip tox
- run:
name: Build documentation
no_output_timeout: 5m
environment:
# Ensure this is same as store_artifacts path below
DOCS_PATH: _build/html
command: |
export BASE_URL="/output/job/$CIRCLE_WORKFLOW_JOB_ID/artifacts/0/$DOCS_PATH"
export OMP_NUM_THREADS=1
python -m tox -e py313-buildhtml
- store_artifacts:
path: _build/html
workflows:
version: 2
build-and-docs:
jobs:
- build-docs