You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#39043 enabled conda incubator for the benchmark build. But I didn't get the doc build to work. I had something like this
web_and_docs:
name: Web and docsruns-on: ubuntu-latestdefaults:
run:
shell: bash -l -e {0}steps:
- name: Checkoutuses: actions/checkout@v1
- name: Cache condauses: actions/cache@v2with:
path: ~/conda_pkgs_dirkey: ${{ runner.os }}-conda-${{ hashFiles('${{ env.ENV_FILE }}') }}
- uses: conda-incubator/setup-miniconda@v2with:
activate-environment: pandas-devchannel-priority: strictenvironment-file: ${{ env.ENV_FILE }}use-only-tar-bz2: true
- name: Environment Detailrun: | conda info conda list
- name: Build Pandasrun: | python setup.py build_ext -j 2 python -m pip install -e . --no-build-isolation --no-use-pep517
- name: Build websiterun: python web/pandas_web.py web/pandas --target-path=web/build
- name: Build documentationrun: doc/make.py --warnings-are-errors | tee sphinx.log ; exit ${PIPESTATUS[0]}# This can be removed when the ipython directive fails when there are errors,# including the `tee sphinx.log` in te previous step (https://github.com/ipython/ipython/issues/11547)
- name: Check ipython directive errorsrun: "! grep -B10 \"^<<<-------------------------------------------------------------------------$\" sphinx.log"
......
There are no errors in the output of doc/make.py --warnings-are-errors, but it exits with code 1. Also, using multiple workers to build the doc doesn't improve the performance.
The text was updated successfully, but these errors were encountered:
#39043 enabled conda incubator for the benchmark build. But I didn't get the doc build to work. I had something like this
There are no errors in the output of
doc/make.py --warnings-are-errors
, but it exits with code 1. Also, using multiple workers to build the doc doesn't improve the performance.The text was updated successfully, but these errors were encountered: