Skip to content

Commit 14c3e87

Browse files
committed
CI: Add graphviz, split installation and build
1 parent 16960f6 commit 14c3e87

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.circleci/config.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,15 +307,21 @@ jobs:
307307
circleci step halt
308308
fi
309309
- run:
310-
name: Check Python version and upgrade pip
310+
name: Check Python version and upgrade setup requirements
311311
command: |
312312
python --version
313313
python -m pip install -U pip setuptools numpy
314314
- run:
315-
name: Install fMRIPrep
315+
name: Install graphviz
316316
command: |
317-
python -m pip install ".[doc]"
318-
make -C docs html
317+
apt-get update
318+
apt-get install -y graphviz
319+
- run:
320+
name: Install fMRIPrep
321+
command: python -m pip install ".[doc]"
322+
- run:
323+
name: Build documentation
324+
command: make -C docs html
319325
- store_artifacts:
320326
path: /tmp/src/fmriprep/docs/_build/html
321327

0 commit comments

Comments
 (0)