Hi team's
I'm try to add sparc to the daily ci,I add code to tools/ci/cibuild.sh
and tools/ci/testlist/other.dat,but when i start pull
requests,there's ci check error,beacuse "install_tools" function was not
executed,what resulte the build of xx3803:nsh can't find
sparc-gaisler-elf-gcc,to solve this problem,i change ./cibuild.sh -A -c
testlist/${{matrix.boards}}.dat to ./cibuild.sh -A -c -i
testlist/${{matrix.boards}}.dat in build.yml, but the excute of
function install_tools {
pushd .
for func in ${install}; do
${func}
done
popd
echo PATH="${EXTRA_PATH}"/"${PATH}" > "${prebuilt}"/env.sh
}
has other error when install kconfig-frontends
https://github.com/apache/incubator-nuttx/runs/5032993342?check_suite_focus=true
how solve this problem?
Best regards,
Zou