You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by sd...@apache.org on 2022/03/09 06:35:47 UTC

[netbeans] branch master updated: Do not search unnecessarily deep.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c7ab926  Do not search unnecessarily deep.
     new 797f4f4  Merge pull request #3721 from sdedic/ci/caching_performance
c7ab926 is described below

commit c7ab926ec6d09bb71d0e3a011f6090bd21679a27
Author: Svata Dedic <sv...@oracle.com>
AuthorDate: Mon Mar 7 14:53:12 2022 +0100

    Do not search unnecessarily deep.
---
 .github/workflows/cv.yml          | 2 +-
 .github/workflows/ensure-jdk8.yml | 2 +-
 .github/workflows/javadoc.yml     | 2 +-
 .github/workflows/linux.yml       | 2 +-
 .github/workflows/macos.yml       | 2 +-
 .github/workflows/php.yml         | 2 +-
 .github/workflows/windows.yml     | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/cv.yml b/.github/workflows/cv.yml
index 7dffff8..c3f5728 100644
--- a/.github/workflows/cv.yml
+++ b/.github/workflows/cv.yml
@@ -35,7 +35,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: ~/.hgexternalcache
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - name: Clean
diff --git a/.github/workflows/ensure-jdk8.yml b/.github/workflows/ensure-jdk8.yml
index a5dffec..1b2991b 100644
--- a/.github/workflows/ensure-jdk8.yml
+++ b/.github/workflows/ensure-jdk8.yml
@@ -34,7 +34,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: ~/.hgexternalcache
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - name: Set up JDK 8
diff --git a/.github/workflows/javadoc.yml b/.github/workflows/javadoc.yml
index 1febbd3..59c87e3 100644
--- a/.github/workflows/javadoc.yml
+++ b/.github/workflows/javadoc.yml
@@ -35,7 +35,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: ~/.hgexternalcache
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - name: Get maven coordinates
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 75d861b..98351b9 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -35,7 +35,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: ~/.hgexternalcache
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - name: Clean
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 12d95c9..2e0eabb 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -35,7 +35,7 @@ jobs:
           path: |
             ~/.hgexternalcache
             ~/Library/Caches/Homebrew
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - run: brew install ant
diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml
index a6d7956..22a4ec8 100644
--- a/.github/workflows/php.yml
+++ b/.github/workflows/php.yml
@@ -37,7 +37,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: ~/.hgexternalcache
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - name: Setup PHP
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index ef2224a..8a910a8 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -35,7 +35,7 @@ jobs:
         uses: actions/cache@v2
         with:
           path: ~/.hgexternalcache
-          key: ${{ runner.os }}-${{ hashFiles('**/external/binaries-list') }}
+          key: ${{ runner.os }}-${{ hashFiles('*/external/binaries-list', '*/*/external/binaries-list') }}
           restore-keys: ${{ runner.os }}-
 
       - name: Clean

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists