From 7b598f3fc9cdc98cf757665c8757607272ea71c3 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 25 Aug 2025 15:41:04 -0700 Subject: [PATCH] CI - Add missing args to generic.sh (#85737) --- .azure-pipelines/commands/generic.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.azure-pipelines/commands/generic.sh b/.azure-pipelines/commands/generic.sh index 28eb12688ed..74ef8bbb8c4 100755 --- a/.azure-pipelines/commands/generic.sh +++ b/.azure-pipelines/commands/generic.sh @@ -13,6 +13,9 @@ else target="shippable/generic/" fi +stage="${S:-prod}" + # shellcheck disable=SC2086 ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ + --remote-terminate always --remote-stage "${stage}" \ --docker default --python "${python}"