.readthedocs.yaml 685 B

1234567891011121314151617181920212223242526272829303132
  1. # Copyright (c) 2023, 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. - poetry config virtualenvs.create false
  20. post_install:
  21. - poetry install --with doc
  22. sphinx:
  23. configuration: docs/conf.py
  24. # Auxiliary formats to export to (in addition to the default HTML output).
  25. formats:
  26. - pdf