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

xiaoxiang 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 c9ce47b33 github/workflows/build.yml: added option -N job docker 
(Linux)
c9ce47b33 is described below

commit c9ce47b33d638e286a8beb6c28ad072a6cc4418a
Author: simbit18 <[email protected]>
AuthorDate: Wed Jul 17 10:17:45 2024 +0200

    github/workflows/build.yml: added option -N job docker (Linux)
    
    added option -N Use CMake with Ninja as the backend.
    
    depends on this PR https://github.com/apache/nuttx/pull/12721
---
 .github/workflows/build.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8230903cd..04d5e2932 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -41,7 +41,7 @@ jobs:
           REF=$GITHUB_REF
 
           # If a base ref is set this is a PR and we will want to use
-          # the base ref instead of the ref that triggered the event
+          # the base ref instead of the ref that triggered the event.
           if [ ${GITHUB_BASE_REF} ]; then
             REF=refs/heads/$GITHUB_BASE_REF
           fi
@@ -155,9 +155,9 @@ jobs:
             git config --global --add safe.directory 
/github/workspace/sources/apps
             cd sources/nuttx/tools/ci
             if [ "X${{matrix.boards}}" = "Xcodechecker" ]; then
-                ./cibuild.sh -c -A -R --codechecker 
testlist/${{matrix.boards}}.dat
+                ./cibuild.sh -c -A -N -R --codechecker 
testlist/${{matrix.boards}}.dat
             else
-                ./cibuild.sh -c -A -R testlist/${{matrix.boards}}.dat
+                ./cibuild.sh -c -A -N -R testlist/${{matrix.boards}}.dat
             fi
 
       - uses: actions/upload-artifact@v3

Reply via email to