We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5bc43 commit fe77f31Copy full SHA for fe77f31
ci/input_files/build.yaml.tpl
@@ -261,9 +261,11 @@ e2e-test:
261
strategy: depend
262
variables:
263
LANGUAGES_SUBSET: python
264
- {{- range $runtime := (ds "runtimes").runtimes }}
265
- {{- if eq $runtime.arch "amd64" }}
266
- PYTHON_{{ $runtime.name | strings.Trim "python" }}_VERSION: $PYTHON_{{ $runtime.name | strings.Trim "python" }}_VERSION
+ # These env vars are inherited from the dotenv reports of the publish-layer jobs
+ {{- range (ds "runtimes").runtimes }}
+ {{- if eq .arch "amd64" }}
267
+ {{- $version := print (.name | strings.Trim "python") }}
268
+ PYTHON_{{ $version }}_VERSION: $PYTHON_{{ $version }}_VERSION
269
{{- end }}
270
271
needs: {{ range (ds "runtimes").runtimes }}
0 commit comments