Skip to content

Commit

Permalink
docs: Add VOLK doc build to CI
Browse files Browse the repository at this point in the history
This should use the `volk_doc` build target to build the docs as part of
our CI. We'll want to upload it to the website eventually.

Signed-off-by: Johannes Demel <[email protected]>
  • Loading branch information
jdemel committed Jan 30, 2024
1 parent d605d9a commit 851bdcf
Show file tree
Hide file tree
Showing 2 changed files with 563 additions and 242 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,25 @@ jobs:
- name: test
run: cd build && ctest -V

build-docs:
name: Build VOLK docs
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]
with:
submodules: 'recursive'
- name: Install dependencies
run: sudo apt install python3-mako liborc-dev
- name: Configure
run: mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Werror" -DBUILD_EXECUTABLE=ON ..
- name: Build
run: cmake --build build --target volk_doc
- uses: actions/upload-artifact@v4
with:
name: volk_docs
path: build/html/

build-windows:

runs-on: windows-latest
Expand Down
Loading

0 comments on commit 851bdcf

Please sign in to comment.