Bumps the actions-deps group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/setup-python](https://github.com/actions/setup-python) | `5.4.0` | `5.6.0` | | [EnricoMi/publish-unit-test-result-action](https://github.com/enricomi/publish-unit-test-result-action) | `2.18.0` | `2.19.0` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `46.0.3` | `46.0.5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.2.1` | `4.3.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.0` | `5.4.2` | | [github/codeql-action](https://github.com/github/codeql-action) | `3.28.13` | `3.28.17` | | [carpentries/actions](https://github.com/carpentries/actions) | `0.14.0` | `0.15.0` | | [zgosalvez/github-actions-ensure-sha-pinned-actions](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions) | `3.0.23` | `3.0.24` | Updates `actions/setup-python` from 5.4.0 to 5.6.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5.4.0...a26af69be951a213d495a4c3e4e4022e16d87065) Updates `EnricoMi/publish-unit-test-result-action` from 2.18.0 to 2.19.0 - [Release notes](https://github.com/enricomi/publish-unit-test-result-action/releases) - [Commits](170bf24d20...afb2984f4d) Updates `tj-actions/changed-files` from 46.0.3 to 46.0.5 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](823fcebdb3...ed68ef82c0) Updates `actions/download-artifact` from 4.2.1 to 4.3.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](95815c38cf...d3f86a106a) Updates `codecov/codecov-action` from 5.4.0 to 5.4.2 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](0565863a31...ad3126e916) Updates `github/codeql-action` from 3.28.13 to 3.28.17 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](1b549b9259...60168efe1c) Updates `carpentries/actions` from 0.14.0 to 0.15.0 - [Release notes](https://github.com/carpentries/actions/releases) - [Commits](e27aa6c531...2e20fd5ee5) Updates `zgosalvez/github-actions-ensure-sha-pinned-actions` from 3.0.23 to 3.0.24 - [Release notes](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/releases) - [Commits](4830be28ce...2d6823da40) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: 5.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: EnricoMi/publish-unit-test-result-action dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: tj-actions/changed-files dependency-version: 46.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: codecov/codecov-action dependency-version: 5.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: github/codeql-action dependency-version: 3.28.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: carpentries/actions dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: zgosalvez/github-actions-ensure-sha-pinned-actions dependency-version: 3.0.24 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
275 lines
9.0 KiB
YAML
275 lines
9.0 KiB
YAML
# Copyright (c) 2020 Linaro Limited.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: Documentation Build
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 */3 * * *'
|
|
push:
|
|
tags:
|
|
- v*
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
DOXYGEN_VERSION: 1.12.0
|
|
DOXYGEN_MD5SUM: fd96a5defa535dfe2e987b46540844a4
|
|
JOB_COUNT: 4
|
|
|
|
jobs:
|
|
doc-file-check:
|
|
name: Check for doc changes
|
|
runs-on: ubuntu-24.04
|
|
outputs:
|
|
file_check: ${{ steps.check-doc-files.outputs.any_modified }}
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 0
|
|
- name: Check if Documentation related files changed
|
|
uses: tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46.0.5
|
|
id: check-doc-files
|
|
with:
|
|
files: |
|
|
doc/
|
|
boards/**/doc/
|
|
**.rst
|
|
include/
|
|
kernel/include/kernel_arch_interface.h
|
|
lib/libc/**
|
|
subsys/testsuite/ztest/include/**
|
|
**/Kconfig*
|
|
west.yml
|
|
scripts/dts/
|
|
doc/requirements.txt
|
|
.github/workflows/doc-build.yml
|
|
scripts/pylib/pytest-twister-harness/src/twister_harness/device/device_adapter.py
|
|
scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/shell.py
|
|
|
|
doc-build-html:
|
|
name: "Documentation Build (HTML)"
|
|
needs: [doc-file-check]
|
|
if: >
|
|
needs.doc-file-check.outputs.file_check == 'true' || github.event_name != 'pull_request'
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 90
|
|
concurrency:
|
|
group: doc-build-html-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- name: install-pkgs
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y wget python3-pip git ninja-build graphviz lcov
|
|
wget --no-verbose "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz"
|
|
echo "${DOXYGEN_MD5SUM} doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz" | md5sum -c
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed to verify doxygen tarball"
|
|
exit 1
|
|
fi
|
|
sudo tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz -C /opt
|
|
echo "/opt/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH
|
|
echo "${HOME}/.local/bin" >> $GITHUB_PATH
|
|
|
|
- name: checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
fetch-depth: 0
|
|
path: zephyr
|
|
|
|
- name: Rebase
|
|
if: github.event_name == 'pull_request'
|
|
continue-on-error: true
|
|
env:
|
|
BASE_REF: ${{ github.base_ref }}
|
|
PR_HEAD: ${{ github.event.pull_request.head.sha }}
|
|
working-directory: zephyr
|
|
run: |
|
|
git config --global user.email "actions@zephyrproject.org"
|
|
git config --global user.name "Github Actions"
|
|
rm -fr ".git/rebase-apply"
|
|
rm -fr ".git/rebase-merge"
|
|
git rebase origin/${BASE_REF}
|
|
git clean -f -d
|
|
git log --graph --oneline HEAD...${PR_HEAD}
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
with:
|
|
python-version: 3.12
|
|
cache: pip
|
|
cache-dependency-path: doc/requirements.txt
|
|
|
|
- name: Setup Zephyr project
|
|
uses: zephyrproject-rtos/action-zephyr-setup@f7b70269a8eb01f70c8e710891e4c94972a2f6b4 # v1.0.6
|
|
with:
|
|
app-path: zephyr
|
|
toolchains: 'all'
|
|
|
|
- name: install-pip
|
|
working-directory: zephyr
|
|
run: |
|
|
pip install -r doc/requirements.txt --require-hashes
|
|
|
|
- name: build-docs
|
|
shell: bash
|
|
working-directory: zephyr
|
|
run: |
|
|
if [[ "$GITHUB_REF" =~ "refs/tags/v" ]]; then
|
|
DOC_TAG="release"
|
|
else
|
|
DOC_TAG="development"
|
|
fi
|
|
|
|
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
|
|
DOC_TARGET="html-fast"
|
|
else
|
|
DOC_TARGET="html"
|
|
fi
|
|
|
|
DOC_TAG=${DOC_TAG} \
|
|
SPHINXOPTS="-j ${JOB_COUNT} -W --keep-going -T" \
|
|
SPHINXOPTS_EXTRA="-q -t publish" \
|
|
make -C doc ${DOC_TARGET}
|
|
|
|
# API documentation coverage
|
|
python3 -m coverxygen --xml-dir doc/_build/html/doxygen/xml/ --src-dir include/ --output doc-coverage.info
|
|
# deprecated page causing issues
|
|
lcov --remove doc-coverage.info \*/deprecated > new.info
|
|
genhtml --no-function-coverage --no-branch-coverage new.info -o coverage-report
|
|
|
|
- name: compress-docs
|
|
working-directory: zephyr
|
|
run: |
|
|
tar --use-compress-program="xz -T0" -cf html-output.tar.xz --exclude html/_sources --exclude html/doxygen/xml --directory=doc/_build html
|
|
tar --use-compress-program="xz -T0" -cf api-output.tar.xz --directory=doc/_build html/doxygen/html
|
|
tar --use-compress-program="xz -T0" -cf api-coverage.tar.xz coverage-report
|
|
|
|
- name: upload-build
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: html-output
|
|
path: zephyr/html-output.tar.xz
|
|
|
|
- name: upload-api-coverage
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: api-coverage
|
|
path: zephyr/api-coverage.tar.xz
|
|
|
|
- name: process-pr
|
|
if: github.event_name == 'pull_request'
|
|
run: |
|
|
REPO_NAME="${{ github.event.repository.name }}"
|
|
PR_NUM="${{ github.event.pull_request.number }}"
|
|
DOC_URL="https://builds.zephyrproject.io/${REPO_NAME}/pr/${PR_NUM}/docs/"
|
|
API_DOC_URL="https://builds.zephyrproject.io/${REPO_NAME}/pr/${PR_NUM}/docs/doxygen/html/"
|
|
API_COVERAGE_URL="https://builds.zephyrproject.io/${REPO_NAME}/pr/${PR_NUM}/api-coverage/"
|
|
|
|
echo "${PR_NUM}" > pr_num
|
|
echo "Documentation will be available shortly at: ${DOC_URL}" >> $GITHUB_STEP_SUMMARY
|
|
echo "API Documentation will be available shortly at: ${API_DOC_URL}" >> $GITHUB_STEP_SUMMARY
|
|
echo "API Coverage Report will be available shortly at: ${API_COVERAGE_URL}" >> $GITHUB_STEP_SUMMARY
|
|
|
|
- name: upload-pr-number
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
if: github.event_name == 'pull_request'
|
|
with:
|
|
name: pr_num
|
|
path: pr_num
|
|
|
|
doc-build-pdf:
|
|
name: "Documentation Build (PDF)"
|
|
needs: [doc-file-check]
|
|
if: |
|
|
github.event_name != 'pull_request'
|
|
runs-on: ubuntu-24.04
|
|
timeout-minutes: 120
|
|
concurrency:
|
|
group: doc-build-pdf-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
path: zephyr
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
|
with:
|
|
python-version: 3.12
|
|
cache: pip
|
|
cache-dependency-path: doc/requirements.txt
|
|
|
|
- name: install-pkgs
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install --no-install-recommends graphviz librsvg2-bin \
|
|
texlive-latex-base texlive-latex-extra latexmk \
|
|
texlive-fonts-recommended texlive-fonts-extra texlive-xetex \
|
|
imagemagick fonts-noto xindy
|
|
wget --no-verbose "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz"
|
|
echo "${DOXYGEN_MD5SUM} doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz" | md5sum -c
|
|
if [ $? -ne 0 ]; then
|
|
echo "Failed to verify doxygen tarball"
|
|
exit 1
|
|
fi
|
|
sudo tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz -C /opt
|
|
echo "/opt/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH
|
|
|
|
- name: Setup Zephyr project
|
|
uses: zephyrproject-rtos/action-zephyr-setup@f7b70269a8eb01f70c8e710891e4c94972a2f6b4 # v1.0.6
|
|
with:
|
|
app-path: zephyr
|
|
toolchains: 'arm-zephyr-eabi'
|
|
|
|
- name: install-pip-pkgs
|
|
working-directory: zephyr
|
|
run: |
|
|
pip install -r doc/requirements.txt --require-hashes
|
|
|
|
- name: build-docs
|
|
shell: bash
|
|
working-directory: zephyr
|
|
continue-on-error: true
|
|
run: |
|
|
if [[ "$GITHUB_REF" =~ "refs/tags/v" ]]; then
|
|
DOC_TAG="release"
|
|
else
|
|
DOC_TAG="development"
|
|
fi
|
|
|
|
DOC_TAG=${DOC_TAG} \
|
|
SPHINXOPTS="-q -j ${JOB_COUNT}" \
|
|
LATEXMKOPTS="-quiet -halt-on-error" \
|
|
make -C doc pdf
|
|
|
|
- name: upload-build
|
|
if: always()
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: pdf-output
|
|
if-no-files-found: ignore
|
|
path: |
|
|
zephyr/doc/_build/latex/zephyr.pdf
|
|
zephyr/doc/_build/latex/zephyr.log
|
|
|
|
doc-build-status-check:
|
|
if: always()
|
|
name: "Documentation Build Status"
|
|
needs:
|
|
- doc-build-pdf
|
|
- doc-file-check
|
|
- doc-build-html
|
|
uses: ./.github/workflows/ready-to-merge.yml
|
|
with:
|
|
needs_context: ${{ toJson(needs) }}
|