Skip to content

Commit d4640ba

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

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.circleci/config.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,33 @@
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:
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

0 commit comments

Comments
 (0)