From 8fd8d96711b1d4c6a3922dabab05f53b2a2e8dd5 Mon Sep 17 00:00:00 2001 From: "Maarten L. Hekkelman" Date: Wed, 15 Jan 2025 12:42:12 +0100 Subject: [PATCH] build docs @github - take 2 --- .github/workflows/build-documentation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-documentation.yml b/.github/workflows/build-documentation.yml index 1a54796..f3e4a15 100644 --- a/.github/workflows/build-documentation.yml +++ b/.github/workflows/build-documentation.yml @@ -31,15 +31,15 @@ jobs: - name: Install dependencies Ubuntu run: sudo apt-get update && sudo apt-get install cmake doxygen + - name: Configure CMake + run: cmake -S . -B build -DBUILD_DOCUMENTATION=ON -DBUILD_TESTING=OFF + - uses: actions/setup-python@v5 with: python-version: '3.13' cache: 'pip' # caching pip dependencies - run: pip install -r docs/requirements.txt - - name: Configure CMake - run: cmake -S . -B build -DBUILD_DOCUMENTATION=ON -DBUILD_TESTING=OFF - - name: Run Sphinx run: | cmake --build build --target Sphinx-mcfp