From c98960cbf4e47ed7065c3ad3c8e618cbfb820d16 Mon Sep 17 00:00:00 2001 From: liuhaitao Date: Tue, 28 Apr 2020 15:19:39 +0800 Subject: [PATCH] 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 --- .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 268fecb97..32bb4e298 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