From a86ad5f84d2d74c65abd94c9c51f24fc1ca98aa1 Mon Sep 17 00:00:00 2001 From: Rithika Narayan Date: Fri, 26 Dec 2025 12:47:58 -0500 Subject: [PATCH 1/3] Trigger version update in documentation --- ci/input_files/build.yaml.tpl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ci/input_files/build.yaml.tpl b/ci/input_files/build.yaml.tpl index 67f13706..224fadfc 100644 --- a/ci/input_files/build.yaml.tpl +++ b/ci/input_files/build.yaml.tpl @@ -206,6 +206,20 @@ publish-pypi-package: script: - ./ci/publish_pypi.sh +update-layer-versions-docs: + stage: publish + trigger: + project: DataDog/serverless-ci + inputs: + RUN_LAMBDA_LAYER_DOCUMENTATION: true + RUN_LAMBDA_DATADOG_CI: true + RUN_LAMBDA_UI_LAYER_VERSIONS: true + RUN_LAMBDA_RUNTIMES: true + rules: + - if: '$CI_COMMIT_TAG =~ /^v.*/' + needs: {{ range $runtime := (ds "runtimes").runtimes }} + - publish-layer-prod ({{ $runtime.name }}-{{ $runtime.arch}}) + layer bundle: stage: build tags: ["arch:amd64"] From 66d13288517cfed0e29c109766ee80c8009c8049 Mon Sep 17 00:00:00 2001 From: Rithika Narayan Date: Fri, 26 Dec 2025 14:42:09 -0500 Subject: [PATCH 2/3] typo --- ci/input_files/build.yaml.tpl | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/input_files/build.yaml.tpl b/ci/input_files/build.yaml.tpl index 224fadfc..dd963d55 100644 --- a/ci/input_files/build.yaml.tpl +++ b/ci/input_files/build.yaml.tpl @@ -219,6 +219,7 @@ update-layer-versions-docs: - if: '$CI_COMMIT_TAG =~ /^v.*/' needs: {{ range $runtime := (ds "runtimes").runtimes }} - publish-layer-prod ({{ $runtime.name }}-{{ $runtime.arch}}) + {{- end }} layer bundle: stage: build From 6436d93d78ef3fc9c94f96d14ed15938058cce23 Mon Sep 17 00:00:00 2001 From: Rithika Narayan Date: Fri, 26 Dec 2025 15:03:32 -0500 Subject: [PATCH 3/3] Move input to variables --- ci/input_files/build.yaml.tpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/input_files/build.yaml.tpl b/ci/input_files/build.yaml.tpl index dd963d55..833b133d 100644 --- a/ci/input_files/build.yaml.tpl +++ b/ci/input_files/build.yaml.tpl @@ -210,16 +210,16 @@ update-layer-versions-docs: stage: publish trigger: project: DataDog/serverless-ci - inputs: - RUN_LAMBDA_LAYER_DOCUMENTATION: true - RUN_LAMBDA_DATADOG_CI: true - RUN_LAMBDA_UI_LAYER_VERSIONS: true - RUN_LAMBDA_RUNTIMES: true rules: - if: '$CI_COMMIT_TAG =~ /^v.*/' needs: {{ range $runtime := (ds "runtimes").runtimes }} - publish-layer-prod ({{ $runtime.name }}-{{ $runtime.arch}}) - {{- end }} + {{- end }} + variables: + RUN_LAMBDA_LAYER_DOCUMENTATION: "true" + RUN_LAMBDA_DATADOG_CI: "true" + RUN_LAMBDA_UI_LAYER_VERSIONS: "true" + RUN_LAMBDA_RUNTIMES: "true" layer bundle: stage: build