From 164fc26025684147391fc88d9cf68e835b2bb547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Test=C3=A9?= Date: Fri, 14 Nov 2025 15:47:11 +0100 Subject: [PATCH] chore(ci): add placeholders for documentation benchmarks This is done to be able to execute CI in further development. --- .github/workflows/benchmark_documentation.yml | 17 +++++++++++++++++ .github/workflows/generate_svg_common.yml | 17 +++++++++++++++++ .github/workflows/generate_svgs.yml | 17 +++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 .github/workflows/benchmark_documentation.yml create mode 100644 .github/workflows/generate_svg_common.yml create mode 100644 .github/workflows/generate_svgs.yml diff --git a/.github/workflows/benchmark_documentation.yml b/.github/workflows/benchmark_documentation.yml new file mode 100644 index 000000000..c4da7112f --- /dev/null +++ b/.github/workflows/benchmark_documentation.yml @@ -0,0 +1,17 @@ +name: benchmark_documentation.yml + +on: + workflow_dispatch: + +permissions: {} + +# zizmor: ignore[concurrency-limits] only Zama organization members can trigger this workflow + +jobs: + placeholder: + name: benchmark_documentation/placeholder + runs-on: ubuntu-latest + + steps: + - run: | + echo "Hello this is a placeholder workflow" diff --git a/.github/workflows/generate_svg_common.yml b/.github/workflows/generate_svg_common.yml new file mode 100644 index 000000000..dc6f2a60a --- /dev/null +++ b/.github/workflows/generate_svg_common.yml @@ -0,0 +1,17 @@ +name: generate_svg_common.yml + +on: + workflow_call: + +permissions: {} + +# zizmor: ignore[concurrency-limits] caller workflow is responsible for the concurrency + +jobs: + placeholder: + name: generate_svg_common/placeholder + runs-on: ubuntu-latest + + steps: + - run: | + echo "Hello this is a placeholder workflow" diff --git a/.github/workflows/generate_svgs.yml b/.github/workflows/generate_svgs.yml new file mode 100644 index 000000000..f84362dd5 --- /dev/null +++ b/.github/workflows/generate_svgs.yml @@ -0,0 +1,17 @@ +name: generate_svgs.yml + +on: + workflow_call: + +permissions: {} + +# zizmor: ignore[concurrency-limits] caller workflow is responsible for the concurrency + +jobs: + placeholder: + name: generate_svgs/placeholder + runs-on: ubuntu-latest + + steps: + - run: | + echo "Hello this is a placeholder workflow"