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

cederom pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 0327abb48 build.yml: MSYS2 GitHub Action disable ccache and enable
0327abb48 is described below

commit 0327abb483d5af3ec4e231f060a318bdac4fdba8
Author: simbit18 <[email protected]>
AuthorDate: Tue Nov 26 11:59:46 2024 +0100

    build.yml: MSYS2 GitHub Action disable ccache and enable
    
    You need to disable the msys2 cache from the GitHub action because we moved 
the Scheduled Merge Jobs to a new NuttX Mirror Repo and approaching total cache 
storage limit !!!
    
    https://github.com/apache/nuttx/actions/caches
    
    https://github.com/msys2/setup-msys2?tab=readme-ov-file#cache
    
    Enable CMake+Ninja for Msys2
---
 .github/workflows/build.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c469e8ed9..7c96f1094 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -278,6 +278,7 @@ jobs:
         with:
           msystem: MSYS
           update: false
+          cache: false
           install: >-
             base-devel
             gcc
@@ -322,7 +323,7 @@ jobs:
           git config --global --add safe.directory 
/github/workspace/sources/nuttx
           git config --global --add safe.directory 
/github/workspace/sources/apps
           cd sources/nuttx/tools/ci
-          ./cibuild.sh -g -i -A -C -R testlist/${{matrix.boards}}.dat
+          ./cibuild.sh -g -i -A -C -N -R testlist/${{matrix.boards}}.dat
 
       - uses: actions/upload-artifact@v4
         with:

Reply via email to