From 0a065767147caaf1b8411dcd408f532872f9cf6b Mon Sep 17 00:00:00 2001 From: Antoine Beyeler Date: Sat, 26 Oct 2024 09:38:55 +0200 Subject: [PATCH 1/2] Fix snippet roundtrip CI --- docs/snippets/snippets.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/snippets/snippets.toml b/docs/snippets/snippets.toml index 4620e4dafb70..c7374f7634f1 100644 --- a/docs/snippets/snippets.toml +++ b/docs/snippets/snippets.toml @@ -45,6 +45,11 @@ "cpp", # Blueprint API doesn't exist for C++/Rust "rust", # Blueprint API doesn't exist for C++/Rust ] +"concepts/app-model" = [ # Uses a non-standard logging workflow + "py", + "cpp", + "rust", +] views = [ "cpp", # TODO(#5520): C++ views are not yet implemented "rust", # TODO(#5521): Rust views are not yet implemented @@ -131,6 +136,10 @@ views = [ "cpp", # Not implemented "rust", # Not implemented ] +"tutorials/visualization" = [ + "cpp", # Not implemented + "rust", # Not implemented +] # These entries will run but their results won't be compared to the baseline. # From dad5202c0837b2ac2eb9125c8fce5bf2f0ee57c7 Mon Sep 17 00:00:00 2001 From: Antoine Beyeler Date: Sat, 26 Oct 2024 10:01:23 +0200 Subject: [PATCH 2/2] Also opt out running python --- docs/snippets/snippets.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/snippets/snippets.toml b/docs/snippets/snippets.toml index c7374f7634f1..82e8d3fbb908 100644 --- a/docs/snippets/snippets.toml +++ b/docs/snippets/snippets.toml @@ -137,6 +137,7 @@ views = [ "rust", # Not implemented ] "tutorials/visualization" = [ + "py", # Requires passing RRD as argument "cpp", # Not implemented "rust", # Not implemented ]