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

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2018-12-06 23:42:41 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2018-12-06 23:42:41 +0300
commitd09ff4d30b875b5eca4dcd82477345a16c9a2de6 (patch)
tree784501d42598fff7ae41aa9c2bda78ccb75e584c
parentab620a2a0d1578a57a02a6c77f46b364a44d764a (diff)
parentde994e0a8b1a86ae9ae8a1142b6a2761ce8b1dc4 (diff)
Merge in 'release/2.1' changes
-rw-r--r--.azure/pipelines/ci.yml (renamed from .azure/pipelines/fast-pr-validation.yml)19
-rw-r--r--.azure/pipelines/pr-validation-temp.yml30
2 files changed, 39 insertions, 10 deletions
diff --git a/.azure/pipelines/fast-pr-validation.yml b/.azure/pipelines/ci.yml
index 216f257ef1..a0c24b2d15 100644
--- a/.azure/pipelines/fast-pr-validation.yml
+++ b/.azure/pipelines/ci.yml
@@ -1,18 +1,17 @@
-trigger:
-- master
-- release/*
+# Don't run CI for this config yet. We're not ready to move official builds on to Azure Pipelines
+trigger: none
+
+# Run PR validation on all branches
+pr:
+ branches:
+ include:
+ - '*'
jobs:
- template: jobs/default-build.yml
parameters:
- jobName: PR_FastCheck
- jobDisplayName: Fast Check
- agentOs: Windows
- buildArgs: "/t:FastCheck"
-- template: jobs/default-build.yml
- parameters:
jobName: Windows_Build
- jobDisplayName: "Build: Windows"
+ jobDisplayName: "Build and test: Windows"
agentOs: Windows
beforeBuild:
- powershell: "& ./src/IISIntegration/tools/UpdateIISExpressCertificate.ps1"
diff --git a/.azure/pipelines/pr-validation-temp.yml b/.azure/pipelines/pr-validation-temp.yml
new file mode 100644
index 0000000000..b190d7c0c4
--- /dev/null
+++ b/.azure/pipelines/pr-validation-temp.yml
@@ -0,0 +1,30 @@
+# This configuration is temporary while we work on getting all unit tests to pass on PR checks
+
+# Don't run CI for this config
+trigger: none
+
+# Run PR validation on all branches
+pr:
+ branches:
+ include:
+ - '*'
+
+jobs:
+- template: jobs/default-build.yml
+ parameters:
+ jobName: Windows_Build
+ jobDisplayName: "Build only : Windows"
+ agentOs: Windows
+ buildArgs: '/p:SkipTests=true'
+- template: jobs/default-build.yml
+ parameters:
+ jobName: macOs_Build
+ jobDisplayName: "Build only : macOS"
+ agentOs: macOS
+ buildArgs: '/p:SkipTests=true'
+- template: jobs/default-build.yml
+ parameters:
+ jobName: Linux_Build
+ jobDisplayName: "Build only : Linux"
+ agentOs: Linux
+ buildArgs: '/p:SkipTests=true'