Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ jobs:
timeoutInMinutes: 360
displayName: "Live Test with Python"
steps:
- bash: |
if [[ "$(SUB_NAME)" == "acs" ]]; then
echo "##vso[task.setvariable variable=AZCLI_ALT_SUBSCRIPTION_ID]$(ACS_TEST_SUB_ID)"
elif [[ "$(SUB_NAME)" == "runner" ]]; then
echo "##vso[task.setvariable variable=AZCLI_ALT_SUBSCRIPTION_ID]$(AKS_CLI_RUNNER_SUB_ID)"
else
echo "##vso[task.setvariable variable=AZCLI_ALT_SUBSCRIPTION_ID]$(AKS_CLI_PR_GATE_SUB_ID)"
fi
displayName: "Choose Subscription"
- bash: |
mkdir $(REPO_NAME)
shopt -s extglob dotglob
Expand Down