Skip to content

Commit

Permalink
Reduce doc CI parallelization (#2394)
Browse files Browse the repository at this point in the history
Can't parallelize over notebooks/html steps without breaking things

(cherry picked from commit d5ded46)
  • Loading branch information
mwaskom committed Dec 20, 2020
1 parent 2ade6aa commit bfeaab8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:

build-docs:
runs-on: ubuntu-latest
env:
MAKEFLAGS: "-j `nproc`"
steps:

- name: Checkout
Expand All @@ -36,7 +34,9 @@ jobs:
sudo apt-get install pandoc
- name: Build docs
run: make -C doc notebooks html
run: |
make -C doc -j `nproc` notebooks
make -C doc html
run-tests:
Expand Down

0 comments on commit bfeaab8

Please sign in to comment.