.readthedocs.yaml 685 B

12345678910111213141516171819202122232425262728293031
  1. # Copyright (c) 2023-2024, Arm Limited. All rights reserved
  2. #
  3. # SPDX-License-Identifier: BSD-3-Clause
  4. #
  5. # Configuration file for the readthedocs deploy
  6. # Available at https://trustedfirmware-a.readthedocs.io/en/latest/
  7. # readthedocs config version
  8. version: 2
  9. build:
  10. os: ubuntu-22.04 # Ubuntu Jammy LTS
  11. tools:
  12. python: "3.10"
  13. apt_packages:
  14. - plantuml
  15. - librsvg2-bin
  16. jobs:
  17. post_create_environment:
  18. - pip install poetry=="1.3.2"
  19. post_install:
  20. - VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --with docs
  21. sphinx:
  22. configuration: docs/conf.py
  23. # Auxiliary formats to export to (in addition to the default HTML output).
  24. formats:
  25. - pdf