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-linux.yml')
-rw-r--r--eng/pipelines/libraries/stress/http-linux.yml47
1 files changed, 0 insertions, 47 deletions
diff --git a/eng/pipelines/libraries/stress/http-linux.yml b/eng/pipelines/libraries/stress/http-linux.yml
deleted file mode 100644
index fc55c8fb8af..00000000000
--- a/eng/pipelines/libraries/stress/http-linux.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-trigger: none
-
-pr:
- branches:
- include:
- - "*"
-
-schedules:
-- cron: "0 13 * * *" # 1PM UTC => 5 AM PST
- displayName: HttpStress nightly run
- branches:
- include:
- - master
-
-pool:
- name: Hosted Ubuntu 1604
-
-variables:
- - template: ../variables.yml
- - name: httpStressProject
- value: $(sourcesRoot)/System.Net.Http/tests/StressTests/HttpStress/
- - name: sdkBaseImage
- value: sdk-corefx-current
- - name: httpStressImage
- value: httpstress
-
-steps:
-- checkout: self
- clean: true
- fetchDepth: 1
- lfs: false
-
-- bash: |
- docker build -t $(sdkBaseImage) --build-arg CONFIGURATION=$(BUILD_CONFIGURATION) --build-arg BUILD_SCRIPT_NAME=$(buildScriptFileName) -f $(HttpStressProject)corefx.Dockerfile .
- displayName: Build Libraries
-
-- bash: |
- cd '$(HttpStressProject)'
- docker build -t $(httpStressImage) --build-arg SDK_BASE_IMAGE=$(sdkBaseImage) --build-arg CONFIGURATION=$(BUILD_CONFIGURATION) .
- displayName: Build HttpStress
-
-- bash: |
- cd '$(HttpStressProject)'
- docker-compose up --abort-on-container-exit --no-color
- displayName: Run HttpStress
- env:
- HTTPSTRESS_IMAGE: $(httpStressImage)