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
This commit is contained in:
parent
836aecb10d
commit
c9ce47b33d
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user