From 70b094aa1836a03f4c671ee0e2ab407262af0fa9 Mon Sep 17 00:00:00 2001 From: Steph Prince <40640337+stephprince@users.noreply.github.com> Date: Tue, 6 Aug 2024 13:41:02 -0700 Subject: [PATCH] remove doxygen build test workflow --- .github/workflows/doxygen-build.yml | 37 ----------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/doxygen-build.yml 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