Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Merge pull request #2153 from greenbone/config_id_in_get_reports #41

Merge pull request #2153 from greenbone/config_id_in_get_reports

Merge pull request #2153 from greenbone/config_id_in_get_reports #41

Workflow file for this run

name: 'Build Documentation'
on:
push:
branches: [ main, stable, oldstable ]
jobs:
generate-doc-and-upload-coverage:
name: Build XML documentation and upload coverage
runs-on: ubuntu-latest
container: greenbone/doxygen
steps:
- name: Run the c lang coverage action
uses: greenbone/actions/doc-coverage-clang@v3
build-gmp-doc:
name: Build GMP documentation
runs-on: ubuntu-latest
container: ${{ vars.IMAGE_REGISTRY }}/greenbone/gvmd-build:stable
steps:
- name: Check out gvmd
uses: actions/checkout@v4
- name: Generate GMP documentation (HTML)
run: |
mkdir build
cd build
cmake -DSKIP_SRC=1 ..
make doc-gmp
- name: Upload GMP documentation artifact
uses: actions/upload-artifact@v4
with:
name: gmp.html
path: build/doc/gmp.html
retention-days: 14