Skip to content

Commit

Permalink
feat: Added cmake option that allows you to build docs on a non-cuda …
Browse files Browse the repository at this point in the history
…capable platform.
  • Loading branch information
amstokely committed Nov 27, 2023
1 parent ebf9f02 commit c485bdb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ on: push
jobs:
deploy-docs:
runs-on: ubuntu-latest
env:
repo_token: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Install Doxygen
run: sudo apt-get install doxygen
- name: Install CMake
run: sudo apt-get install cmake
- name: Configure CMake
run: cmake . -DBUILD_NETSCI=OFF -DBUILD_PYTHON_BINDINGS=OFF -DBUILD_SAMPLES=OFF -DGENERATE_DOCS=ON
run: cmake -S . -DBUILD_NETSCI=OFF -DBUILD_PYTHON_BINDINGS=OFF -DBUILD_SAMPLES=OFF -DGENERATE_DOCS=ON
- name: Build Doxygen Documentation
run: make docs

Expand Down

0 comments on commit c485bdb

Please sign in to comment.