Skip to content

Valgrind on native #1270

Valgrind on native

Valgrind on native #1270

#
# If not stated otherwise in this file or this component's LICENSE file the
# following copyright and licenses apply:
#
# Copyright 2024 Sky UK
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Doxygen Documentation Check
on:
pull_request:
branches: [ "master", "rdkcentral:master" ]
workflow_dispatch:
jobs:
build-doxygen:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y doxygen
sudo apt install -y graphviz
- name: Run through the Doxygen Documentation
id: doxygen
run: |
mkdir -p build/gh_pages
doxygen
- name: Check for errors in the Doxygen Documentation
run: |
if [ -s doxygen_errors.txt ]
then
echo "Errors found in the Doxygen Documentation:"
cat doxygen_errors.txt
exit 1
else
echo "No errors found in the Doxygen Documentation!"
exit 0
fi