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:
authorAlexander Nikolaev <55398552+alnikola@users.noreply.github.com>2020-06-18 14:50:09 +0300
committerGitHub <noreply@github.com>2020-06-18 14:50:09 +0300
commit3ace198426582bd154569798942591b31ad1425f (patch)
tree89310d2ceadc9f6375bb52aa3b82984b9b7ad9e9 /eng/pipelines/libraries/stress/http.yml
parent0de50030b876e9c77368e6144e53ed1b540a517c (diff)
Networking stress tests moved out of Hosted pool (#35011)
HttpStress and SslStress tests moved off hosted pool to different queues. Note: HttpStress runs are failing but it's actual test code or prod code issue which will be investigated. Infrastructure-wise everything looks good now. Fixes #34780
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