Skip to content

Commit d351274

Browse files
committed
Attempt to fix circlci
1 parent 5781303 commit d351274

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.circleci/config.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Check https://circleci.com/docs/2.0/language-python/ for more details
44
#
5-
version: 2
5+
version: 2.1
66
jobs:
77
build:
88
docker:
@@ -18,6 +18,14 @@ jobs:
1818
name: Validate roles JSON file
1919
command: |
2020
python validate_roles.py
21+
- run:
22+
name: Install sphinx deps
23+
command: |
24+
python -m pip install -r requirements.txt
25+
- run:
26+
name: Build sphinx
27+
command: |
28+
sphinx-build --color -W --keep-going -b html . _build/html
2129
- store_artifacts:
22-
path: /root/project
30+
path: /root/project/_build/html
2331
destination: html

0 commit comments

Comments
 (0)