You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/04/29 06:47:03 UTC

[incubator-nuttx-apps] branch master updated: CI: Remove -G from cibuild.sh command line

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/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new c98960c  CI: Remove -G from cibuild.sh command line
c98960c is described below

commit c98960cbf4e47ed7065c3ad3c8e618cbfb820d16
Author: liuhaitao <li...@xiaomi.com>
AuthorDate: Tue Apr 28 15:19:39 2020 +0800

    CI: Remove -G from cibuild.sh command line
    
    Use make distclean instead of git clean to do check build clean defaultly.
    
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 .github/workflows/build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 268fecb..32bb4e2 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -170,7 +170,7 @@ jobs:
           run: |
             git -C sources/nuttx fetch --tags
             cd sources/testing
-            ./cibuild.sh -x -G testlist/${{matrix.boards}}.dat
+            ./cibuild.sh -x testlist/${{matrix.boards}}.dat
 
   macOS:
     runs-on: macos-10.15
@@ -211,4 +211,4 @@ jobs:
         run: |
           git -C sources/nuttx fetch --tags
           cd sources/testing
-          ./cibuild.sh -i -x -G testlist/${{matrix.boards}}.dat
+          ./cibuild.sh -i -x testlist/${{matrix.boards}}.dat