This commit is contained in:
Jim Minter 2020-10-08 08:18:09 -05:00
Родитель 7248b32892
Коммит a302a9a54a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 0730CBDA10D1A2D3
6 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -18,6 +18,7 @@ jobs:
- template: ./templates/template-push-images-to-acr.yml
parameters:
rpImageACR: $(RP_IMAGE_ACR)
- template: ./templates/template-az-cli-logout.yml
- script: |
cp -a --parents aro "$(Build.ArtifactStagingDirectory)"
displayName: Copy artifacts

Просмотреть файл

@ -23,3 +23,4 @@ jobs:
parameters:
subscriptionID: $(AZURE_SUBSCRIPTION_ID)
azureDevOpsJSONSPN: $(aro-v4-e2e-devops-spn)
- template: ./templates/template-az-cli-logout.yml

Просмотреть файл

@ -31,3 +31,4 @@ jobs:
- template: ./templates/template-run-rp-and-e2e.yml
- template: ./templates/template-clean-e2e-db.yml
- template: ./templates/template-clean-e2e-deps.yml
- template: ./templates/template-az-cli-logout.yml

Просмотреть файл

@ -1,3 +1,5 @@
# if you include this template, also include template-az-cli-logout.yml to
# remove the credentials from the CI VM.
parameters:
azureDevOpsJSONSPN: ''
steps:

Просмотреть файл

@ -0,0 +1,7 @@
steps:
- script: |
set -e
az logout
rm -rf ~/.azure
displayName: 🗝 AZ Logout
condition: always()

Просмотреть файл

@ -42,3 +42,4 @@ steps:
clean_e2e
condition: succeededOrFailed()
displayName: 🧹 Clean up after ${{ parameters.location }} E2E
- template: ./templates/template-az-cli-logout.yml