Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'eng/pipelines/libraries/stress/http.yml')
-rw-r--r--eng/pipelines/libraries/stress/http.yml16
1 files changed, 9 insertions, 7 deletions
diff --git a/eng/pipelines/libraries/stress/http.yml b/eng/pipelines/libraries/stress/http.yml
index 2d7dbb6860b..ddf8a566790 100644
--- a/eng/pipelines/libraries/stress/http.yml
+++ b/eng/pipelines/libraries/stress/http.yml
@@ -27,7 +27,8 @@ jobs:
displayName: Docker Linux
timeoutInMinutes: 120
pool:
- name: Hosted Ubuntu 1604
+ name: NetCorePublic-Pool
+ queue: BuildPool.Ubuntu.1604.Amd64.Open
steps:
- checkout: self
@@ -35,11 +36,11 @@ jobs:
fetchDepth: 5
- bash: |
- $(dockerfilesFolder)/build-docker-sdk.ps1 -t $(sdkBaseImage) -c $(BUILD_CONFIGURATION)
+ $(dockerfilesFolder)/build-docker-sdk.sh -t $(sdkBaseImage) -c $(BUILD_CONFIGURATION)
displayName: Build CLR and Libraries
- bash: |
- $(httpStressProject)/run-docker-compose.ps1 -o -c $(BUILD_CONFIGURATION) -t $(sdkBaseImage)
+ $(httpStressProject)/run-docker-compose.sh -o -c $(BUILD_CONFIGURATION) -t $(sdkBaseImage)
displayName: Build HttpStress
- bash: |
@@ -51,7 +52,8 @@ jobs:
displayName: Docker NanoServer
timeoutInMinutes: 120
pool:
- vmImage: 'windows-latest'
+ name: NetCorePublic-Pool
+ queue: BuildPool.Server.Amd64.VS2019.Open
steps:
- checkout: self
@@ -59,15 +61,15 @@ jobs:
fetchDepth: 5
lfs: false
- - pwsh: |
+ - powershell: |
$(dockerfilesFolder)/build-docker-sdk.ps1 -w -t $(sdkBaseImage) -c $(BUILD_CONFIGURATION)
displayName: Build CLR and Libraries
- - pwsh: |
+ - powershell: |
$(httpStressProject)/run-docker-compose.ps1 -w -o -c $(BUILD_CONFIGURATION) -t $(sdkBaseImage)
displayName: Build HttpStress
- - pwsh: |
+ - powershell: |
cd '$(httpStressProject)'
docker-compose up --abort-on-container-exit --no-color
displayName: Run HttpStress