mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
Fix testbuild.sh to actually fail when using -x. Leave -x out for CI
so that we detect all possible build errors for a job.
This commit is contained in:
parent
1ab683387d
commit
7d16090d11
2 changed files with 10 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -161,7 +161,7 @@ jobs:
|
|||
export CCACHE_DIR=`pwd`/ccache
|
||||
mkdir $CCACHE_DIR
|
||||
cd sources/testing
|
||||
./cibuild.sh -c -x testlist/${{matrix.boards}}.dat
|
||||
./cibuild.sh -c testlist/${{matrix.boards}}.dat
|
||||
ccache -s
|
||||
|
||||
macOS:
|
||||
|
|
@ -195,5 +195,5 @@ jobs:
|
|||
export CCACHE_DIR=`pwd`/ccache
|
||||
mkdir $CCACHE_DIR
|
||||
cd sources/testing
|
||||
./cibuild.sh -i -c -x testlist/${{matrix.boards}}.dat
|
||||
./cibuild.sh -i -c testlist/${{matrix.boards}}.dat
|
||||
ccache -s
|
||||
|
|
|
|||
|
|
@ -161,6 +161,8 @@ function makefunc {
|
|||
if ! ${MAKE} ${MAKE_FLAGS} "${EXTRA_FLAGS}" ${JOPTION} $@ 1>/dev/null; then
|
||||
fail=1
|
||||
fi
|
||||
|
||||
return $fail
|
||||
}
|
||||
|
||||
# Clean up after the last build
|
||||
|
|
@ -193,6 +195,8 @@ function distclean {
|
|||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
return $fail
|
||||
}
|
||||
|
||||
# Configure for the next build
|
||||
|
|
@ -225,6 +229,8 @@ function configure {
|
|||
|
||||
makefunc olddefconfig
|
||||
fi
|
||||
|
||||
return $fail
|
||||
}
|
||||
|
||||
# Perform the next build
|
||||
|
|
@ -251,6 +257,8 @@ function build {
|
|||
fail=1
|
||||
fi
|
||||
fi
|
||||
|
||||
return $fail
|
||||
}
|
||||
|
||||
# Coordinate the steps for the next build test
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue