We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b159dcf commit 0c3f604Copy full SHA for 0c3f604
1 file changed
ci/input_files/build.yaml.tpl
@@ -281,6 +281,20 @@ e2e-status:
281
needs:
282
- e2e-test
283
script:
284
- - echo "✅ e2e tests completed successfully"
285
- rules:
286
- - when: on_success
+ - echo "Python layer ARNs used in E2E tests:"
+ {{- range (ds "runtimes").runtimes }}
+ {{- if eq .arch "amd64" }}
287
+ {{- $version := print (.name | strings.Trim "python") }}
288
+ - echo " PYTHON_{{ $version }}_VERSION=$PYTHON_{{ $version }}_VERSION"
289
+ {{- end }}
290
291
+ - |
292
+ # TODO: link to the test results
293
+ # make this job start running at same time as e2e-test job
294
+ # do not wait around for the scheduled job to complete
295
+ if [ "${CI_JOB_STATUS}" = "failed" ]; then
296
+ echo "❌ E2E tests failed"
297
+ exit 1
298
+ else
299
+ echo "✅ E2E tests completed successfully"
300
+ fi
0 commit comments