This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tristan/source-info-fatal-warning in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 907f5fcd38149dc16664290c2a3d6971f2115be5 Author: Tristan van Berkom <[email protected]> AuthorDate: Mon Jun 2 17:19:41 2025 +0900 types.py: Add CoreWarnings.UNAVAILABLE_SOURCE_INFO --- src/buildstream/types.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/buildstream/types.py b/src/buildstream/types.py index 778941768..2ee92afa7 100644 --- a/src/buildstream/types.py +++ b/src/buildstream/types.py @@ -117,6 +117,12 @@ class CoreWarnings: :ref:`alias <project_source_aliases>` """ + UNAVAILABLE_SOURCE_INFO = "unavailable-source-info" + """ + A source was queried for its provenance information but did not implement + :func:`Source.collect_source_info() <buildstream.source.Source.collect_source_info>`. + """ + class OverlapAction(FastEnum): """OverlapAction()
