You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2020/07/03 15:25:54 UTC

[lucenenet] 05/05: azure-pipelines.yml: Reduced maximum parallel jobs to 6 on macOS and Linux, 7 on Windows

This is an automated email from the ASF dual-hosted git repository.

nightowl888 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git

commit a8d3771d0b0d7eae9f93dcf0f0aa308ed45e72ee
Author: Shad Storhaug <sh...@shadstorhaug.com>
AuthorDate: Thu Jul 2 02:18:35 2020 +0700

    azure-pipelines.yml: Reduced maximum parallel jobs to 6 on macOS and Linux, 7 on Windows
---
 azure-pipelines.yml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index b89b60f..1630f23 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -263,14 +263,17 @@ stages:
         Windows:
           osName: 'Windows'
           imageName: 'windows-2019'
+          maximumParallelJobs: 7
           maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
         Linux:
           osName: 'Linux'
           imageName: 'ubuntu-16.04'
+          maximumParallelJobs: 6
           maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
         macOS:
           osName: 'macOS'
           imageName: 'macOS-10.14'
+          maximumParallelJobs: 6
           maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
     displayName: 'Test netcoreapp3.1 on'
     pool:
@@ -282,7 +285,7 @@ stages:
         framework: 'netcoreapp3.1'
         testResultsArtifactName: '$(TestResultsArtifactName)'
         publishedArtifactZipFileName: '$(PublishedArtifactZipFileName)'
-        maximumParallelJobs: 8
+        maximumParallelJobs: $(maximumParallelJobs)
         maximumAllowedFailures: $(maximumAllowedFailures)
 
   - job: Test_netcoreapp2_2
@@ -292,14 +295,17 @@ stages:
         Windows:
           osName: 'Windows'
           imageName: 'windows-2019'
+          maximumParallelJobs: 7
           maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
         Linux:
           osName: 'Linux'
           imageName: 'ubuntu-16.04'
+          maximumParallelJobs: 6
           maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
         macOS:
           osName: 'macOS'
           imageName: 'macOS-10.14'
+          maximumParallelJobs: 6
           maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
     displayName: 'Test netcoreapp2.1 on'
     pool:
@@ -311,7 +317,7 @@ stages:
         framework: 'netcoreapp2.1'
         testResultsArtifactName: '$(TestResultsArtifactName)'
         publishedArtifactZipFileName: '$(PublishedArtifactZipFileName)'
-        maximumParallelJobs: 8
+        maximumParallelJobs: $(maximumParallelJobs)
         maximumAllowedFailures: $(maximumAllowedFailures)
 
   - job: Test_net48_Windows
@@ -326,7 +332,7 @@ stages:
         framework: 'net48'
         testResultsArtifactName: '$(TestResultsArtifactName)'
         publishedArtifactZipFileName: '$(PublishedArtifactZipFileName)'
-        maximumParallelJobs: 9
+        maximumParallelJobs: 7
         maximumAllowedFailures: 4 # Maximum allowed failures for a successful build
 
 - stage: Publish_Stage