File tree Expand file tree Collapse file tree 1 file changed +17
-6
lines changed
Expand file tree Collapse file tree 1 file changed +17
-6
lines changed Original file line number Diff line number Diff line change 22#
33# Check https://circleci.com/docs/2.0/language-python/ for more details
44#
5- version : 2
5+ version : 2.1
66jobs :
77 build :
88 docker :
9- - image : continuumio/miniconda3
9+ - image : cimg/python:3.14
1010 steps :
1111 - checkout
1212 - run :
13- name : Conda setup
13+ name : Install with pip
1414 command : |
15- conda config --set always_yes yes --set changeps1 no
16- conda install requests termcolor
15+ python -m pip install requests termcolor
16+
1717 - run :
1818 name : Validate roles JSON file
1919 command : |
2020 python validate_roles.py
21+
22+ - run :
23+ name : Install sphinx deps
24+ command : |
25+ python -m pip install -r requirements.txt
26+
27+ - run :
28+ name : Build sphinx
29+ command : |
30+ sphinx-build --color -W --keep-going -b html . _build/html
31+
2132 - store_artifacts :
22- path : /root/project
33+ path : /root/project/_build/html
2334 destination : html
You can’t perform that action at this time.
0 commit comments