From c9ce47b33d638e286a8beb6c28ad072a6cc4418a Mon Sep 17 00:00:00 2001 From: simbit18 <101105604+simbit18@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:17:45 +0200 Subject: [PATCH] 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