You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "$BUILDKITE_PIPELINE_SLUG"=="integrations-serverless" ]];then
23
-
if [[ "$BUILDKITE_STEP_KEY"=="test-integrations-serverless-project" ]];then
12
+
if [[ "$BUILDKITE_PIPELINE_SLUG"=~ ^(integrations|integrations-test-stack|integrations-serverless)$ ]];then
13
+
# it should match "^test-integration-" steps created in the integrations and integrations-test-stack pipelines (e.g. test-integration-apache or test-integration-aws)
14
+
# as well as the step ID "test-integrations-serverless-project" from the "integrations-serverless" pipeline
15
+
if [[ "$BUILDKITE_STEP_KEY"=~ ^test-integrations- ]];then
24
16
25
17
# Ensure that kind cluster is deleted
26
18
delete_kind_cluster
@@ -30,13 +22,13 @@ if [[ "$BUILDKITE_PIPELINE_SLUG" == "integrations-serverless" ]]; then
0 commit comments