Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: doc: pin Python dependencies to specific versions/hashes #87311

Merged
merged 7 commits into from
Mar 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,15 @@ updates:
actions-deps:
patterns:
- "*"

- package-ecosystem: "pip"
directory: "/doc"
schedule:
interval: "weekly"
commit-message:
prefix: "ci: doc: "
labels: []
groups:
doc-deps:
patterns:
- "*"
68 changes: 33 additions & 35 deletions .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,8 @@ permissions:
contents: read

env:
# NOTE: west docstrings will be extracted from the version listed here
WEST_VERSION: 1.2.0
# The latest CMake available directly with apt is 3.18, but we need >=3.20
# so we fetch that through pip.
CMAKE_VERSION: 3.20.5
DOXYGEN_VERSION: 1.12.0
DOXYGEN_MD5SUM: fd96a5defa535dfe2e987b46540844a4
JOB_COUNT: 4

jobs:
Expand Down Expand Up @@ -72,6 +68,11 @@ jobs:
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
Expand Down Expand Up @@ -108,8 +109,7 @@ jobs:
- name: install-pip
working-directory: zephyr
run: |
pip install -r doc/requirements.txt
pip install coverxygen
pip install -r doc/requirements.txt --require-hashes

- name: build-docs
shell: bash
Expand Down Expand Up @@ -183,50 +183,48 @@ jobs:
needs: [doc-file-check]
if: |
github.event_name != 'pull_request'
runs-on: ubuntu-22.04
container: texlive/texlive:latest
runs-on: ubuntu-24.04
timeout-minutes: 120
concurrency:
group: doc-build-pdf-${{ github.ref }}
cancel-in-progress: true

steps:
- name: Apply container owner mismatch workaround
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}

- name: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
path: zephyr

- name: install-pkgs
run: |
apt-get update
apt-get install -y python3-pip python3-venv ninja-build doxygen graphviz librsvg2-bin imagemagick
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: cache-pip
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
- name: Setup Zephyr project
uses: zephyrproject-rtos/action-zephyr-setup@f7b70269a8eb01f70c8e710891e4c94972a2f6b4 # v1.0.6
with:
path: ~/.cache/pip
key: pip-${{ hashFiles('doc/requirements.txt') }}

- name: setup-venv
run: |
python3 -m venv .venv
. .venv/bin/activate
echo PATH=$PATH >> $GITHUB_ENV

- name: install-pip
run: |
pip install -r doc/requirements.txt
pip install west==${WEST_VERSION}
pip install cmake==${CMAKE_VERSION}
app-path: zephyr
toolchains: 'arm-zephyr-eabi'

- name: west setup
- name: install-pip-pkgs
working-directory: zephyr
run: |
west init -l .
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
Expand All @@ -247,8 +245,8 @@ jobs:
name: pdf-output
if-no-files-found: ignore
path: |
doc/_build/latex/zephyr.pdf
doc/_build/latex/zephyr.log
zephyr/doc/_build/latex/zephyr.pdf
zephyr/doc/_build/latex/zephyr.log

doc-build-status-check:
if: always()
Expand Down
29 changes: 29 additions & 0 deletions doc/requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# DOC: used to generate docs

sphinx<8.2.0
sphinx_rtd_theme~=3.0
sphinx-tabs
sphinxcontrib-svg2pdfconverter
pygments>=2.9,!=2.19.0
sphinx-notfound-page
sphinx-copybutton
sphinx-togglebutton
sphinx-sitemap
sphinx-autobuild

# YAML validation. Used by zephyr_module.
PyYAML>=6.0
pykwalify

# Used by pytest-twister-harness plugin (imported by autodoc)
pytest
pyserial

# Doxygen doxmlparser
doxmlparser

# Used by the Zephyr domain to organize code samples
anytree

# Used to generate API coverage reports
coverxygen
Loading
Loading