Merge Main with feature/websockets branch. Co-authored-by: Ben Broderick Phillips <ben@benbp.net> Co-authored-by: George Arama <50641385+gearama@users.noreply.github.com> Co-authored-by: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Co-authored-by: sima-zhu <sizhu@microsoft.com> Co-authored-by: Ahson Khan <ahson_ahmedk@yahoo.com> Co-authored-by: Mike Harder <mharder@microsoft.com> Co-authored-by: scbedd <45376673+scbedd@users.noreply.github.com> Co-authored-by: Daniel Jurek <djurek@microsoft.com> Co-authored-by: Heath Stewart <heaths@microsoft.com> Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com> Co-authored-by: praveenkuttappan <prmarott@microsoft.com> Co-authored-by: Ben Broderick Phillips <ben@benbp.net>
26 lines
819 B
YAML
26 lines
819 B
YAML
parameters:
|
|
rootFolder: '$(Build.SourcesDirectory)'
|
|
targetVersion: ''
|
|
templateRoot: '$(Build.SourcesDirectory)'
|
|
|
|
steps:
|
|
- pwsh: |
|
|
${{ parameters.templateRoot }}/eng/common/scripts/trust-proxy-certificate.ps1
|
|
displayName: 'Language Specific Certificate Trust'
|
|
|
|
- pwsh: |
|
|
docker info
|
|
displayName: 'Dump active docker information'
|
|
|
|
- pwsh: |
|
|
${{ parameters.templateRoot }}/eng/common/testproxy/docker-start-proxy.ps1 -Mode start -TargetFolder "${{ parameters.rootFolder }}" -VersionOverride="${{ parameters.targetVersion }}"
|
|
displayName: 'Run the docker container'
|
|
|
|
- pwsh: |
|
|
docker container ls -a
|
|
displayName: Check running container
|
|
|
|
- pwsh: |
|
|
Write-Host "##vso[task.setvariable variable=PROXY_MANUAL_START]true"
|
|
displayName: 'Set PROXY_MANUAL_START'
|