Skip to content

Commit 66276ef

Browse files
author
BruceHaley
committed
Update experimental-create-azure-container-registry.yml for Azure Pipelines
1 parent f441060 commit 66276ef

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

pipelines/experimental-create-azure-container-registry.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# Starter pipeline
2-
# Start with a minimal pipeline that you can customize to build and deploy your code.
3-
# Add steps that build, run tests, deploy, and more:
4-
# https://aka.ms/yaml
5-
61
trigger: none # no ci trigger
72

83
pr: none # no pr trigger
@@ -22,10 +17,11 @@ steps:
2217
azureSubscription: 'FUSE Temporary (174c5021-8109-4087-a3e2-a1de20420569)'
2318
ScriptType: 'InlineScript'
2419
Inline: |
25-
# You can write your azure powershell scripts inline here.
26-
# You can also pass predefined and custom variables to this script using arguments
27-
Write-Host 'blah'
20+
Set-PSDebug -Trace 1;
21+
Write-Host 'blah';
22+
Write-Host 'az group create --name NightlyPythonFunctionalTestContainerRegistryRG --location eastus'
2823
az group create --name NightlyPythonFunctionalTestContainerRegistryRG --location eastus
24+
Write-Host 'az acr create --resource-group NightlyPythonFunctionalTestContainerRegistryRG --name NightlyPythonFunctionalTestContainerRegistry --sku Basic'
2925
az acr create --resource-group NightlyPythonFunctionalTestContainerRegistryRG --name NightlyPythonFunctionalTestContainerRegistry --sku Basic
3026
az acr login --name NightlyPythonFunctionalTestContainerRegistry
3127
docker pull hello-world

0 commit comments

Comments
 (0)