From 4b957c7f9cc9a31d58acae9738a9d22233fbca3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Test=C3=A9?= Date: Fri, 14 Nov 2025 15:41:13 +0100 Subject: [PATCH 1/2] chore(ci): add placeholder for cargo_build_common.yml This is done to be able to execute CI in further development. Also, we won't have to temporary lift the branch protection rules to be able to merge since this upcoming development is a rework cargo_build.yml workflow. --- .github/workflows/cargo_build_common.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/cargo_build_common.yml diff --git a/.github/workflows/cargo_build_common.yml b/.github/workflows/cargo_build_common.yml new file mode 100644 index 0000000000..6c8f0df78a --- /dev/null +++ b/.github/workflows/cargo_build_common.yml @@ -0,0 +1,17 @@ +name: cargo_build_common + +on: + workflow_call: + +permissions: {} + +# zizmor: ignore[concurrency-limits] caller workflow is responsible for the concurrency + +jobs: + placeholder: + name: cargo_build_common/placeholder + runs-on: ubuntu-latest + + steps: + - run: | + echo "Hello this is a placeholder workflow" From c2ee384394b93b64eb00267bb6c6f1f2ec2f9ec7 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 2/2] 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 0000000000..c4da7112f9 --- /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 0000000000..dc6f2a60a3 --- /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 0000000000..f84362dd58 --- /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"