The ci uses the docker container. You will want to submit a PR updating that and have that merge first.
https://github.com/apache/incubator-nuttx/blob/master/tools/ci/docker/linux/Dockerfile On Tue, Feb 1, 2022, 11:37 PM fft <f...@feedforward.com.cn> wrote: > 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