Skip to content
Merged
Show file tree
Hide file tree
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
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ jobs:

- uses: mamba-org/setup-micromamba@v1
with:
environment-file: doc/environment.yaml
environment-file: .github/mamba_env.yaml
environment-name: win-test

- name: Build
Expand Down
23 changes: 14 additions & 9 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ name: Documentation
on:
push:
branches:
- v2.x
- main
pull_request:
branches:
- v2.x
- master
- main

permissions:
Expand Down Expand Up @@ -35,13 +34,19 @@ jobs:
submodules: 'recursive'
fetch-depth: 0

- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: doc/environment.yaml
environment-name: doc-build
cache-environment: true
cache-downloads: true
- name: Install dependencies
run: |
pkgs=(
doxygen
graphviz
libhdf5-dev
libboost-all-dev
libeigen3-dev
libxtensor-dev
)

sudo apt-get update
sudo apt-get install -y ${pkgs[@]}

- name: Build documentation with CMake
run: |
Expand Down
Loading