From 0728d32b91eac54e115df36b6eca4c8fd7abde68 Mon Sep 17 00:00:00 2001 From: PC Date: Thu, 8 Aug 2024 22:02:32 +0200 Subject: [PATCH 1/2] CI Doxygen test --- .github/workflows/doxygen.yml | 65 +++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .github/workflows/doxygen.yml diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml new file mode 100644 index 0000000..afd3e48 --- /dev/null +++ b/.github/workflows/doxygen.yml @@ -0,0 +1,65 @@ +name: Deploy Doxygen to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +env: + BUILD_PATH: "sdk" + +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install pandoc and doxygen + run: | + sudo apt install pandoc doxygen + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: '3.12' + + - name: Build Doxygen + run: | + cd sdk + mkdir -p doc + doxygen Doxyfile + + - name: Setup Pages + id: pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: sdk/doc + + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + needs: build + runs-on: ubuntu-latest + name: Deploy + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 From c0118a259ff677cb0e7d54821ba4f6e96cf07458 Mon Sep 17 00:00:00 2001 From: PC Date: Thu, 8 Aug 2024 22:10:39 +0200 Subject: [PATCH 2/2] add graphviz support --- .github/workflows/doxygen.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index afd3e48..adbfdec 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Install pandoc and doxygen run: | - sudo apt install pandoc doxygen + sudo apt install pandoc doxygen graphviz sphinx-doc - name: Setup python uses: actions/setup-python@v5 with: