Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
miniconda-version: "latest"
activate-environment: test
python-version: '3.10'
auto-activate: false
auto-activate: true
- name: Verify conda environment
shell: bash -l {0}
run: |
Expand All @@ -36,16 +36,14 @@ jobs:
- name: Update pip
shell: bash -l {0}
run: python -m pip install --upgrade pip
- name: Install pytorch
shell: bash -l {0}
run: pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128
- name: Install Dependencies
shell: bash -l {0}
run: |
set -eux
conda install -y git
conda install -y -c conda-forge glog==0.4.0 gflags fmt
pip install cmake
pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu128
pip install -r docs/requirements.txt
export USE_NCCL=0
export USE_NCCLX=0
Expand All @@ -56,7 +54,6 @@ jobs:
working-directory: docs
run: |
set -eux
conda activate test
make html SPHINXOPTS="-WT --keep-going" || echo "Build completed with warnings/errors"
- name: Remove noindex meta tag from docs
working-directory: docs/build/html
Expand Down
Loading