diff --git a/.github/workflows/doxygen-build.yml b/.github/workflows/doxygen-build.yml deleted file mode 100644 index e63cfbbe..00000000 --- a/.github/workflows/doxygen-build.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Doxygen Build Test - -on: - push: - branches: - - main - pull_request: - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - submodules: "true" - - name: Install dependencies - ubuntu - run: | - sudo apt-get update - sudo apt-get install doxygen graphviz -y - sudo apt-get install -y libhdf5-dev libboost-all-dev - git clone https://github.com/catchorg/Catch2.git - cd Catch2 - git checkout "v3.5.3" - cmake -Bbuild -H. -DBUILD_TESTING=OFF - sudo cmake --build build/ --target install - shell: bash - - - name: Configure and build the API - run: | - cmake --preset=ci-ubuntu - cmake --build build - shell: bash - - - name: Build the docs - run : cmake "-DPROJECT_SOURCE_DIR=$PWD" "-DPROJECT_BINARY_DIR=$PWD/build" -P cmake/docs-ci.cmake - shell: bash