25
25
- task : AzureCLI@1
26
26
displayName : ' update version'
27
27
inputs :
28
- azureSubscription : ' Azure CLI release '
28
+ azureSubscription : $(AZURE_SDK_INFRA_SUB_CONNECTED_SERVICE)
29
29
scriptLocation : inlineScript
30
30
inlineScript : |
31
31
set -ev
93
93
- task : AzureCLI@1
94
94
displayName : ' Checkout Target Branch'
95
95
inputs :
96
- azureSubscription : ' Azure CLI release '
96
+ azureSubscription : $(AZURE_SDK_INFRA_SUB_CONNECTED_SERVICE)
97
97
scriptLocation : inlineScript
98
98
inlineScript : |
99
99
set -ev
@@ -114,21 +114,24 @@ jobs:
114
114
115
115
git checkout -b ${GITHUB_BRANCH} ${GITHUB_REPO}/${GITHUB_BRANCH}
116
116
- template : ../../.azure-pipelines/templates/azdev_setup.yml
117
- - bash : |
118
- set -ev
119
-
120
- source env/bin/activate
121
-
122
- if [[ -n "$(CUSTOM_WHL_URL)" ]]; then
123
- pip install $(CUSTOM_WHL_URL) --force-reinstall
124
- fi
125
-
126
- az login -u $(CLI_LIVE_TEST_ACCOUNT) -p "$(CLI_LIVE_TEST_PASSWORD)"
127
- az account set -s 0b1f6471-1bf0-4dda-aec3-cb9272f09590
128
-
129
- serial_modules="appservice botservice cloud network azure-cli-core azure-cli-telemetry"
130
- python scripts/ci/automation_full_test.py "8" "$(Instance_idx)" "latest" "$serial_modules" "True"
131
- displayName: "Rerun tests"
117
+ - task : AzureCLI@1
118
+ displayName : ' Rerun tests'
119
+ inputs :
120
+ azureSubscription : $(AZURE_SDK_TEST_SUB_CONNECTED_SERVICE)
121
+ scriptLocation : inlineScript
122
+ inlineScript : |
123
+ set -ev
124
+
125
+ source env/bin/activate
126
+
127
+ if [[ -n "$(CUSTOM_WHL_URL)" ]]; then
128
+ pip install $(CUSTOM_WHL_URL) --force-reinstall
129
+ fi
130
+
131
+ az account set -s 0b1f6471-1bf0-4dda-aec3-cb9272f09590
132
+
133
+ serial_modules="appservice botservice cloud network azure-cli-core azure-cli-telemetry"
134
+ python scripts/ci/automation_full_test.py "8" "$(Instance_idx)" "latest" "$serial_modules" "True"
132
135
- task : PublishTestResults@2
133
136
inputs :
134
137
testResultsFiles : ' /$(HOME)/.azdev/env_config/mnt/vss/_work/1/s/env/test_results_*.xml'
@@ -144,7 +147,7 @@ jobs:
144
147
- task : AzureCLI@1
145
148
displayName : ' Create PR'
146
149
inputs :
147
- azureSubscription : ' Azure CLI release '
150
+ azureSubscription : $(AZURE_SDK_INFRA_SUB_CONNECTED_SERVICE)
148
151
scriptLocation : inlineScript
149
152
inlineScript : |
150
153
set -ev
0 commit comments