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

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


The following commit(s) were added to refs/heads/master by this push:
     new c475124  Use max-parallel=3 to reduce the usage of the shared GitHub 
Actions executors
c475124 is described below

commit c475124ef8c61eb398ee119f27dfe21a14eca32f
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Thu Feb 4 16:26:05 2021 +0300

    Use max-parallel=3 to reduce the usage of the shared GitHub Actions 
executors
---
 .github/workflows/buildcache.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/buildcache.yml b/.github/workflows/buildcache.yml
index bcfae54..198610a 100644
--- a/.github/workflows/buildcache.yml
+++ b/.github/workflows/buildcache.yml
@@ -6,8 +6,11 @@ on:
       - master
 
 jobs:
-  ubuntu-code-style:
+  seed-build-cache:
     strategy:
+      # CI resources are shared, so reduce concurrent builds
+      max-parallel: 3
+      fail-fast: false
       matrix:
         os: [ubuntu, macos, windows]
         jdk: [8, 11, 15]

Reply via email to