Skip to content

Commit

Permalink
remove doxygen req from tests runner
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprince committed Apr 1, 2024
1 parent 821a43a commit ae34de6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libhdf5-dev libboost-all-dev catch2 doxygen
sudo apt-get install -y libhdf5-dev libboost-all-dev catch2
- name: Install dependencies - macos
if: matrix.os == 'macos-latest'
run: brew install hdf5 boost catch2 doxygen
run: brew install hdf5 boost catch2

- name: Install dependencies - windows
if: matrix.os == 'windows-latest'
Expand All @@ -46,7 +46,7 @@ jobs:
cd vcpkg
./bootstrap-vcpkg.bat
./vcpkg integrate install
./vcpkg install hdf5 boost catch2 doxygen
./vcpkg install hdf5 boost catch2
- name: Install static analyzers
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion cmake/dev-mode.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ add_custom_target(
)
add_dependencies(run-exe aq-nwb_exe)

option(BUILD_DOCS "Build documentation using Doxygen" ON)
option(BUILD_DOCS "Build documentation using Doxygen" OFF)
if(BUILD_DOCS)
include(cmake/docs.cmake)
endif()
Expand Down

0 comments on commit ae34de6

Please sign in to comment.