From e58ce834bb007c614d61cd331c2e2e6ed0f5d9db Mon Sep 17 00:00:00 2001 From: Mitch Denny Date: Thu, 30 Jul 2020 14:02:39 +1000 Subject: [PATCH] Remove cosmos-emulator template. --- .../templates/steps/cosmos-emulator.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 eng/pipelines/templates/steps/cosmos-emulator.yml diff --git a/eng/pipelines/templates/steps/cosmos-emulator.yml b/eng/pipelines/templates/steps/cosmos-emulator.yml deleted file mode 100644 index 564f3e429bd7..000000000000 --- a/eng/pipelines/templates/steps/cosmos-emulator.yml +++ /dev/null @@ -1,16 +0,0 @@ -parameters: - EmulatorMsiUrl: "https://aka.ms/cosmosdb-emulator" - StartParameters: '' - -steps: - - powershell: | - $targetDir = $env:temp - Write-Host "Downloading and extracting Cosmos DB Emulator - ${{ parameters.EmulatorMsiUrl }}" - Write-Host "Target Dir: $targetDir" - msiexec /a ${{ parameters.EmulatorMsiUrl }} TARGETDIR=$targetDir /qn | wait-process - displayName: Download and Extract Public Cosmos DB Emulator - - powershell: | - Write-Host "Launching Cosmos DB Emulator" - Import-Module "$env:temp\Azure Cosmos DB Emulator\PSModules\Microsoft.Azure.CosmosDB.Emulator" - Start-CosmosDbEmulator -NoUI ${{ parameters.StartParameters }} - displayName: Start Cosmos DB Emulator \ No newline at end of file